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

update icons

This commit is contained in:
Luke Pulverenti 2015-06-19 18:01:47 -04:00
parent 4d603ad38c
commit 07df993238
16 changed files with 199 additions and 75 deletions

View file

@ -17,6 +17,7 @@
}
function populateVersions(packageInfo, page, installedPlugin) {
var html = '';
for (var i = 0, length = packageInfo.versions.length; i < length; i++) {
@ -109,12 +110,12 @@
$('.pluginName', page).html(pkg.name);
if (pkg.targetSystem == 'Server') {
$("#btnInstallDiv", page).show();
$("#btnInstallDiv", page).visible(true);
$("#nonServerMsg", page).hide();
$("#pSelectVersion", page).show();
$("#pSelectVersion", page).visible(true);
} else {
$("#btnInstallDiv", page).hide();
$("#pSelectVersion", page).hide();
$("#btnInstallDiv", page).visible(false);
$("#pSelectVersion", page).visible(false);
var msg = Globalize.translate('MessageInstallPluginFromApp');
$("#nonServerMsg", page).html(msg).show();