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/11 20:13:14 UTC

svn commit: r555384 - /incubator/xap/trunk/codebase/src/xap/bridges/basic/AbstractWidgetBridge.js

Author: jmargaris
Date: Wed Jul 11 13:13:14 2007
New Revision: 555384

URL: http://svn.apache.org/viewvc?view=rev&rev=555384
Log:
changed width to height, typo

Modified:
    incubator/xap/trunk/codebase/src/xap/bridges/basic/AbstractWidgetBridge.js

Modified: incubator/xap/trunk/codebase/src/xap/bridges/basic/AbstractWidgetBridge.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/codebase/src/xap/bridges/basic/AbstractWidgetBridge.js?view=diff&rev=555384&r1=555383&r2=555384
==============================================================================
--- incubator/xap/trunk/codebase/src/xap/bridges/basic/AbstractWidgetBridge.js (original)
+++ incubator/xap/trunk/codebase/src/xap/bridges/basic/AbstractWidgetBridge.js Wed Jul 11 13:13:14 2007
@@ -925,7 +925,7 @@
 		dojo.html.setMarginBox(this.getRootDomNode(),{height:parseInt(value)});
 	}
 	else{
-		this.getRootDomNode().style.width = value;
+		this.getRootDomNode().style.height = value;
 	}
 }