From 7bf5d6495e034f850d597bf01c11767155432c2a Mon Sep 17 00:00:00 2001 From: Techywarrior Date: Sat, 6 Apr 2013 09:59:18 -0700 Subject: [PATCH] adjusted message --- dashboard-ui/scripts/pluginspage.js | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/dashboard-ui/scripts/pluginspage.js b/dashboard-ui/scripts/pluginspage.js index 742fd6df22..fe531b8c58 100644 --- a/dashboard-ui/scripts/pluginspage.js +++ b/dashboard-ui/scripts/pluginspage.js @@ -55,12 +55,14 @@ html += ""; } - - if (plugins.length == 0 || !plugins.length) { - html += "
  • You have no plugins installed. Click on the Plugin Catalog to view available plugins.
  • "; - } - $('#ulInstalledPlugins', page).html(html).listview('refresh'); + if (plugins.length == 0 || !plugins.length) { + html += '
  • You have no plugins installed. Browse our plugin catalog to view available plugins.
  • '; + $('#ulInstalledPlugins', page).html(html); + }else { + $('#ulInstalledPlugins', page).html(html).listview('refresh'); + } + Dashboard.hideLoadingMsg(); },