1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

adjusted message

This commit is contained in:
Techywarrior 2013-04-06 09:59:18 -07:00
parent bc236f8182
commit 7bf5d6495e

View file

@ -55,12 +55,14 @@
html += "</li>";
}
if (plugins.length == 0 || !plugins.length) {
html += "<li>You have no plugins installed. Click on the Plugin Catalog to view available plugins.</li>";
}
$('#ulInstalledPlugins', page).html(html).listview('refresh');
if (plugins.length == 0 || !plugins.length) {
html += '<li style="padding:5px;">You have no plugins installed. Browse our <a href="plugincatalog.html">plugin catalog</a> to view available plugins.</li>';
$('#ulInstalledPlugins', page).html(html);
}else {
$('#ulInstalledPlugins', page).html(html).listview('refresh');
}
Dashboard.hideLoadingMsg();
},