root / trunk / web / dojo / dojox / fx / ext-dojo / NodeList.js
History | View | Annotate | Download (813 Bytes)
| 1 |
/*
|
|---|---|
| 2 |
Copyright (c) 2004-2010, The Dojo Foundation All Rights Reserved.
|
| 3 |
Available via Academic Free License >= 2.1 OR the modified BSD license.
|
| 4 |
see: http://dojotoolkit.org/license for details
|
| 5 |
*/
|
| 6 |
|
| 7 |
|
| 8 |
if(!dojo._hasResource["dojox.fx.ext-dojo.NodeList"]){ |
| 9 |
dojo._hasResource["dojox.fx.ext-dojo.NodeList"]=true; |
| 10 |
dojo.provide("dojox.fx.ext-dojo.NodeList");
|
| 11 |
dojo.experimental("dojox.fx.ext-dojo.NodeList");
|
| 12 |
dojo.require("dojo.NodeList-fx");
|
| 13 |
dojo.require("dojox.fx");
|
| 14 |
dojo.extend(dojo.NodeList,{sizeTo:function(_1){
|
| 15 |
return this._anim(dojox.fx,"sizeTo",_1); |
| 16 |
},slideBy:function(_2){ |
| 17 |
return this._anim(dojox.fx,"slideBy",_2); |
| 18 |
},highlight:function(_3){ |
| 19 |
return this._anim(dojox.fx,"highlight",_3); |
| 20 |
},fadeTo:function(_4){ |
| 21 |
return this._anim(dojo,"_fade",_4); |
| 22 |
},wipeTo:function(_5){ |
| 23 |
return this._anim(dojox.fx,"wipeTo",_5); |
| 24 |
}}); |
| 25 |
} |