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/10/24 07:23:56 UTC

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

Author: cziegeler
Date: Thu Oct 23 22:23:56 2008
New Revision: 707549

URL: http://svn.apache.org/viewvc?rev=707549&view=rev
Log:
FELIX-790 - Use separate columns for property key and value

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=707549&r1=707548&r2=707549&view=diff
==============================================================================
--- felix/trunk/webconsole/src/main/resources/res/ui/events.js (original)
+++ felix/trunk/webconsole/src/main/resources/res/ui/events.js Thu Oct 23 22:23:56 2008
@@ -88,7 +88,8 @@
     tableE.appendChild(bodyE);
 
     for( var p in dataEntry.properties ) {
-    	bodyE.appendChild(tr(null, null, [td(null, null, [text(p + " = " + dataEntry.properties[p])] )]));
+    	bodyE.appendChild(tr(null, null, [td(null, null, [text(p)] ),
+    	                                  td(null, null, [text(dataEntry.properties[p])])]));
     }
     
     parent.appendChild( td( "content", null, [tableE] ) );