Guest User

Untitled

a guest
Oct 21st, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. _hideWrapper: function(){
  2. // summary: Set the Expando state to "closed"
  3. dojo.addClass(this.domNode, "dojoxExpandoClosed");
  4.  
  5. dojo.style(this.cwrapper,{
  6. visibility: "hidden",
  7. opacity: "0",
  8. overflow: "hidden"
  9. });
  10. },
  11.  
  12. _showEnd: function(){
  13. // summary: Common animation onEnd code - "unclose"
  14. dojo.style(this.cwrapper, { opacity: 0, visibility:"visible" });
  15. dojo.fadeIn({ node:this.cwrapper, duration:227 }).play(1);
  16. dojo.removeClass(this.domNode, "dojoxExpandoClosed");
  17. setTimeout(dojo.hitch(this._container, "layout"), 15);
  18. },
Add Comment
Please, Sign In to add comment