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

display message if no plugins installed

This commit is contained in:
Techywarrior 2013-04-06 09:46:39 -07:00
parent e597354990
commit bc236f8182

View file

@ -55,6 +55,10 @@
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');