SLING-859 - Clear border style attribute for inner table to remove lines.

git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@728650 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/webconsole/src/main/resources/res/ui/events.js b/webconsole/src/main/resources/res/ui/events.js
index ceea6aa..b888d88 100644
--- a/webconsole/src/main/resources/res/ui/events.js
+++ b/webconsole/src/main/resources/res/ui/events.js
@@ -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;
     }