source: Dev/trunk/src/client/dojox/fx/_arg.js @ 532

Last change on this file since 532 was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 623 bytes
Line 
1define(["dojo/_base/lang"],function(lang){
2var fxArg = lang.getObject("dojox.fx._arg",true);
3fxArg.StyleArgs = function(/*Object*/ args){
4        // summary:
5        //              The node and CSS class to use for style manipulations.
6        // node: DOMNode
7        //              The node to manipulate
8        // cssClass: String
9        //              The class to use during the manipulation
10        this.node = args.node;
11        this.cssClass = args.cssClass;
12}
13
14fxArg.ShadowResizeArgs = function(/*Object*/ args){
15        // summary:
16        //      The odd way to document object parameters.
17        // x: Integer
18        //      the width to set
19        // y: Integer
20        //      the height to set
21        this.x = args.x;
22        this.y = args.y;
23}
24return fxArg;
25});
Note: See TracBrowser for help on using the repository browser.