FELIX-975 : Add jquery as standard javascript library to all plugins, make us of jquery for manipulating the dom to get cross-browser compatibility. Fix bundle and components plugins for IE
git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@750492 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 62764c1..993a112 100644
--- a/webconsole/src/main/resources/res/ui/events.js
+++ b/webconsole/src/main/resources/res/ui/events.js
@@ -83,9 +83,9 @@
for( var p in dataEntry.properties ) {
var c1 = td(null, null, [text(p)]);
- c1.setAttribute("style", "border:0px none;");
+ $(c1).css("border", "0px none");
var c2 = td(null, null, [text(dataEntry.properties[p])]);
- c2.setAttribute("style", "border:0px none;");
+ $(c2).css("border", "0px none");
bodyE.appendChild(tr(null, null, [ c1, c2 ]));
}
propE = tableE;