You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xap-commits@incubator.apache.org by jm...@apache.org on 2007/07/25 22:44:14 UTC

svn commit: r559639 - /incubator/xap/trunk/codebase/src/xap/widgets/dojo/SoloPanel.js

Author: jmargaris
Date: Wed Jul 25 15:44:12 2007
New Revision: 559639

URL: http://svn.apache.org/viewvc?view=rev&rev=559639
Log:
solopanel children were not being set to 100% width/height

Modified:
    incubator/xap/trunk/codebase/src/xap/widgets/dojo/SoloPanel.js

Modified: incubator/xap/trunk/codebase/src/xap/widgets/dojo/SoloPanel.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/codebase/src/xap/widgets/dojo/SoloPanel.js?view=diff&rev=559639&r1=559638&r2=559639
==============================================================================
--- incubator/xap/trunk/codebase/src/xap/widgets/dojo/SoloPanel.js (original)
+++ incubator/xap/trunk/codebase/src/xap/widgets/dojo/SoloPanel.js Wed Jul 25 15:44:12 2007
@@ -52,8 +52,8 @@
 		//would this be better as another argument to addChild?
 		if (!child._isWindow){
 			child.domNode.style.position = "absolute";
-			child.domNode.style.position.height="100%";
-			child.domNode.style.position.width="100%";
+			child.domNode.style.height="100%";
+			child.domNode.style.width="100%";
 		}
 		xap.widgets.dojo.SoloPanel.superclass.addChild.call(this,child, overrideContainerNode, pos, ref, insertIndex);
 	}