Index: src/main/resources/res/ui/features.js =================================================================== --- src/main/resources/res/ui/features.js (revision 1036191) +++ src/main/resources/res/ui/features.js (working copy) @@ -25,11 +25,11 @@ function renderView() { renderStatusLine(); renderTable( "Feature Repositories", "repository_table", ["Name", "URL", "Actions"] ); - var txt = "
" + + var txt = "" + "" + "" + "" + - "

"; + "
"; $("#plugin_content").append( txt ); renderTable( "Features", "feature_table", ["Name", "Version", "Repository", "Status", "Actions"] ); renderStatusLine(); @@ -45,14 +45,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 ); }