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 2006/09/25 23:05:21 UTC

svn commit: r449849 - /incubator/xap/trunk/src/xap/widgets/Label.js

Author: jmargaris
Date: Mon Sep 25 16:05:21 2006
New Revision: 449849

URL: http://svn.apache.org/viewvc?view=rev&rev=449849
Log:
noWrap on by default

Modified:
    incubator/xap/trunk/src/xap/widgets/Label.js

Modified: incubator/xap/trunk/src/xap/widgets/Label.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/src/xap/widgets/Label.js?view=diff&rev=449849&r1=449848&r2=449849
==============================================================================
--- incubator/xap/trunk/src/xap/widgets/Label.js (original)
+++ incubator/xap/trunk/src/xap/widgets/Label.js Mon Sep 25 16:05:21 2006
@@ -39,6 +39,7 @@
 	this.table.cellPadding = "0px";
 	this.table.cellSpacing = "0px";
 	this.td = document.createElement('td');
+	this.td.style.whiteSpace = "nowrap";
 	this.br = document.createElement('br');
 	
 	var tbody = document.createElement('tbody');