Changeset 13968

Show
Ignore:
Timestamp:
06/10/08 15:23:27 (7 months ago)
Author:
dante
Message:

fix small nit with title overflow before animation ends. looks much better this way.
!strict

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • dojox/trunk/layout/ExpandoPane.js

    r13964 r13968  
    7272                                        break; 
    7373                        } 
    74                         dojo.addClass(this.domNode,"dojoxExpando"+thisClass); 
     74                        dojo.addClass(this.domNode,"dojoxExpando" + thisClass); 
    7575                        this._isHorizontal = /top|bottom/.test(this.region); 
    7676                } 
     
    178178         
    179179        _hideWrapper:function(){ 
     180                 
     181                dojo.addClass(this.domNode,"dojoxExpandoClosed"); 
    180182                dojo.style(this.cwrapper,{ 
    181183                                visibility:"hidden", 
     
    189191                dojo.style(this.cwrapper,{ opacity: 0, visibility:"visible" });          
    190192                dojo.fadeIn({ node:this.cwrapper, duration:227 }).play(1); 
    191                 dojo.removeClass(this.domNode,"dojoxExpandoClosed"); 
     193                dojo.removeClass(this.domNode, "dojoxExpandoClosed"); 
    192194                setTimeout(dojo.hitch(this._container, "layout"), 15); 
    193195        }, 
    194196         
    195197        _hideEnd: function(){ 
    196                 dojo.addClass(this.domNode,"dojoxExpandoClosed"); 
    197198                setTimeout(dojo.hitch(this._container, "layout"), 15); 
    198199        },