| 2150 |
mathias |
1 |
if(!dojo._hasResource["dojox.fx._arg"]){ //_hasResource checks added by build. Do not use _hasResource directly in your code.
|
|
|
2 |
dojo._hasResource["dojox.fx._arg"] = true;
|
|
|
3 |
dojo.provide("dojox.fx._arg");
|
|
|
4 |
|
|
|
5 |
dojox.fx._arg.StyleArgs = function(/*Object*/ args){
|
|
|
6 |
// summary:
|
|
|
7 |
// The node and CSS class to use for style manipulations.
|
|
|
8 |
// node: DOMNode
|
|
|
9 |
// The node to manipulate
|
|
|
10 |
// cssClass: String
|
|
|
11 |
// The class to use during the manipulation
|
|
|
12 |
this.node = args.node;
|
|
|
13 |
this.cssClass = args.cssClass;
|
|
|
14 |
}
|
|
|
15 |
|
|
|
16 |
dojox.fx._arg.ShadowResizeArgs = function(/*Object*/ args){
|
|
|
17 |
// summary:
|
|
|
18 |
// The odd way to document object parameters.
|
|
|
19 |
// x: Integer
|
|
|
20 |
// the width to set
|
|
|
21 |
// y: Integer
|
|
|
22 |
// the height to set
|
|
|
23 |
this.x = args.x;
|
|
|
24 |
this.y = args.y;
|
|
|
25 |
}
|
|
|
26 |
|
|
|
27 |
}
|