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 = "
" + + var txt = "
" + "" + - "" + - "" + - "" + - "" + - "" + - "" + - "" + - "
Name: Port: Location: JavaOpts: " + - "
Features: Feature URLs:

"; + "Name: " + + "Port: " + + "Location: " + + "JavaOpts: " + + "" + + "Features: " + + "Feature URLs: " + + "" + + ""; $("#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 = "
" + - "
" + - title + "
" + - ""; + var txt = "
" + + "
" + + title + "
" + + ""; for ( var name in columns ) { - txt = txt + ""; + txt = txt + ""; } - txt = txt + "
" + columns[name] + "" + columns[name] + "
"; + txt = txt + ""; $("#plugin_content").append( txt ); }