Index: src/main/resources/res/ui/admin.js
===================================================================
--- src/main/resources/res/ui/admin.js (revision 1036913)
+++ src/main/resources/res/ui/admin.js (working copy)
@@ -24,19 +24,19 @@
function renderView() {
renderStatusLine();
- var txt = "
";
$("#plugin_content").append( txt );
renderTable( "Karaf Instances", "instances_table", ["Pid", "Name", "Port", "State", "JavaOpts", "Location", "Actions"] );
renderStatusLine();
@@ -65,14 +65,14 @@
}
function renderTable( /* String */ title, /* String */ id, /* array of Strings */ columns ) {
- var txt = "" +
- "
";
+ var txt = "" +
+ "";
+ txt = txt + "
";
$("#plugin_content").append( txt );
}