runs this action on attached node(s)
var anims = []; // executes the action for each attached 'Part' dojo.forEach(this._attached,function(node){ // FIXME: this is ugly, and where is toggle class? :( var dir = (node._isShowing) ? "Out" : "In"; // node._isShowing =! node._isShowing; //var _anim = dojox.fx[ this.toggle ? this.toggle+dir : "fade"+dir]({ var _anim = dojo.fadeIn({ node:node.domNode, duration: this.duration, beforeBegin: dojo.hitch(node,"_quickToggle") }); anims.push(_anim); },this); var _anim = dojo.fx.combine(anims); if(_anim){ _anim.play(); }