summaryrefslogtreecommitdiff
path: root/src/static
diff options
context:
space:
mode:
authorEgil Moeller <egil.moller@freecode.no>2012-07-05 18:13:29 +0200
committerEgil Moeller <egil.moller@freecode.no>2012-07-05 18:13:29 +0200
commit799a5768c76a9298d85cd56731c618e4a82d5f93 (patch)
treef3436a6e13e2f978fe1fa5d6bf529f0e7ec85265 /src/static
parentd59956b7da77f46f87e41d1b508d67821bb63924 (diff)
downloadetherpad-lite-799a5768c76a9298d85cd56731c618e4a82d5f93.zip
Quick hack to hide ep_etherpad-lite in plugin list
Diffstat (limited to 'src/static')
-rw-r--r--src/static/js/admin/plugins.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/static/js/admin/plugins.js b/src/static/js/admin/plugins.js
index 1372a313..742c3bb2 100644
--- a/src/static/js/admin/plugins.js
+++ b/src/static/js/admin/plugins.js
@@ -126,6 +126,7 @@ $(document).ready(function () {
socket.on('installed-results', function (data) {
$("#installed-plugins *").remove();
for (plugin_name in data.results) {
+ if (plugin_name == "ep_etherpad-lite") continue; // Hack...
var plugin = data.results[plugin_name];
var row = $("#installed-plugin-template").clone();