9721590b3137ac759db2a1b6a1febfe4016838ab.svn-base 787 B

1234567891011121314151617181920212223242526272829
  1. if (!dojo._hasResource["dojox.fx._arg"]) { // _hasResource checks added by
  2. // build. Do not use _hasResource
  3. // directly in your code.
  4. dojo._hasResource["dojox.fx._arg"] = true;
  5. dojo.provide("dojox.fx._arg");
  6. dojox.fx._arg.StyleArgs = function(/* Object */args) {
  7. // summary:
  8. // The node and CSS class to use for style manipulations.
  9. // node: DOMNode
  10. // The node to manipulate
  11. // cssClass: String
  12. // The class to use during the manipulation
  13. this.node = args.node;
  14. this.cssClass = args.cssClass;
  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. }