Fixed FELIX-2285 /Bundles Plugin doesn't render the bundles name in IE/
https://issues.apache.org/jira/browse/FELIX-2285
git-svn-id: https://svn.apache.org/repos/asf/felix/trunk@934329 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/webconsole/src/main/resources/res/ui/bundles.js b/webconsole/src/main/resources/res/ui/bundles.js
index 6cb010e..1dee034 100644
--- a/webconsole/src/main/resources/res/ui/bundles.js
+++ b/webconsole/src/main/resources/res/ui/bundles.js
@@ -72,8 +72,8 @@
tr.attr('id', 'entry'+id);
tr.find('td:eq(0)').text(id);
- tr.find('td:eq(1) span:eq(0)').attr('id', 'img'+id).click(function() {showDetails(id)});
- tr.find('td:eq(1) span:eq(1)').html( drawDetails ? name : '<a href="' + pluginRoot + '/' + id + '">' + name + '</a>' );
+ tr.find('.bIcon').attr('id', 'img'+id).click(function() {showDetails(id)});
+ tr.find('.bName').html( drawDetails ? name : '<a href="' + pluginRoot + '/' + id + '">' + name + '</a>' );
tr.find('td:eq(2)').text( bundle.version );
tr.find('td:eq(3)').text( bundle.category );
if (id == 0) { // system bundle has no actions
@@ -252,7 +252,7 @@
0: { sorter:"digit" },
5: { sorter: false }
},
- textExtraction:mixedLinksExtraction,
+ textExtraction:mixedLinksExtraction
}).bind("sortEnd", function() {
var t = bundlesTable.eq(0).attr("config");
if (t.sortList) $.cookies.set("webconsolebundlelist", t.sortList);