You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@felix.apache.org by cz...@apache.org on 2008/12/22 12:31:23 UTC

svn commit: r728650 - /felix/trunk/webconsole/src/main/resources/res/ui/events.js

Author: cziegeler
Date: Mon Dec 22 03:31:23 2008
New Revision: 728650

URL: http://svn.apache.org/viewvc?rev=728650&view=rev
Log:
SLING-859 - Clear border style attribute for inner table to remove lines.

Modified:
    felix/trunk/webconsole/src/main/resources/res/ui/events.js

Modified: felix/trunk/webconsole/src/main/resources/res/ui/events.js
URL: http://svn.apache.org/viewvc/felix/trunk/webconsole/src/main/resources/res/ui/events.js?rev=728650&r1=728649&r2=728650&view=diff
==============================================================================
--- felix/trunk/webconsole/src/main/resources/res/ui/events.js (original)
+++ felix/trunk/webconsole/src/main/resources/res/ui/events.js Mon Dec 22 03:31:23 2008
@@ -82,8 +82,11 @@
 	    tableE.appendChild(bodyE);
 	
 	    for( var p in dataEntry.properties ) {
-	    	bodyE.appendChild(tr(null, null, [td(null, null, [text(p)] ),
-	    	                                  td(null, null, [text(dataEntry.properties[p])])]));
+	    	var c1 = td(null, null, [text(p)]);
+	    	c1.setAttribute("style", "border:0px none;");
+	    	var c2 = td(null, null, [text(dataEntry.properties[p])]);
+	    	c2.setAttribute("style", "border:0px none;");
+	    	bodyE.appendChild(tr(null, null, [ c1, c2 ]));
 	    }
 	    propE = tableE;
     }