1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00
This commit is contained in:
Luke Pulverenti 2013-06-19 17:31:46 -04:00
commit 28cc7b40f0
2 changed files with 18 additions and 1 deletions

View file

@ -81,7 +81,15 @@
} else {
$("#btnInstallDiv", page).hide();
$("#pSelectVersion", page).hide();
$("#nonServerMsg", page).html("This plugin must be installed from " + pkg.targetSystem).show();
var msg = "This plugin must be installed from ";
switch (pkg.targetSystem) {
case "MBClassic":
msg += "the MBClassic Configurator";
break;
default:
msg += pkg.targetSystem;
}
$("#nonServerMsg", page).html(msg).show();
}
if (pkg.shortDescription) {