source: Dev/branches/rest-dojo-ui/client/dojox/fx/_arg.js @ 256

Last change on this file since 256 was 256, checked in by hendrikvanantwerpen, 13 years ago

Reworked project structure based on REST interaction and Dojo library. As
soon as this is stable, the old jQueryUI branch can be removed (it's
kept for reference).

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.