Changeset 13738
- Timestamp:
- 05/15/08 07:30:02 (6 months ago)
- Files:
-
- 1 modified
-
dojox/trunk/layout/ExpandoPane.js (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
dojox/trunk/layout/ExpandoPane.js
r13449 r13738 46 46 this._isHorizontal = true; 47 47 48 this._container = this.getParent();49 this._closedSize = this._titleHeight = dojo.marginBox/*_getBorderBox*/(this.titleWrapper).h;50 51 48 if(dojo.isString(this.easeOut)){ 52 49 this.easeOut = dojo.getObject(this.easeOut); … … 81 78 startup: function(){ 82 79 this.inherited(arguments); 80 81 this._container = this.getParent(); 82 this._closedSize = this._titleHeight = dojo.marginBox/*_getBorderBox*/(this.titleWrapper).h; 83 83 84 if(this.splitter){ 84 85 // find our splitter and tie into it's drag logic … … 90 91 })); 91 92 } 93 92 94 this._currentSize = dojo.marginBox(this.domNode); 93 95 this._showSize = this._currentSize[(this._isHorizontal ? "h" : "w")]; … … 198 200 var size = dojo.marginBox(this.domNode); 199 201 // FIXME: do i even need to do this query/forEach? why not just set the containerHeight always 200 dojo.query("[attachParent]", this.domNode).forEach(function(n){202 dojo.query("[attachParent]", this.domNode).forEach(function(n){ 201 203 if(dijit.byNode(n)){ 202 204 var h = size.h - this._titleHeight;