From 3d77e9fe08c19517ae123b88233847bd3b359d1d Mon Sep 17 00:00:00 2001 From: Eric Reed Date: Tue, 18 Feb 2014 08:19:32 -0500 Subject: [PATCH] Change plug-in installation message --- dashboard-ui/scripts/addpluginpage.js | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/dashboard-ui/scripts/addpluginpage.js b/dashboard-ui/scripts/addpluginpage.js index dfab16e115..a5163590db 100644 --- a/dashboard-ui/scripts/addpluginpage.js +++ b/dashboard-ui/scripts/addpluginpage.js @@ -163,14 +163,7 @@ } else { $("#btnInstallDiv", page).hide(); $("#pSelectVersion", page).hide(); - var msg = "This plugin must be installed from "; - switch (pkg.targetSystem) { - case "MBClassic": - msg += "the MBClassic Configurator"; - break; - default: - msg += pkg.targetSystem; - } + var msg = "This plug-in must be installed from " + pkg.targetSystem; $("#nonServerMsg", page).html(msg).show(); }