summaryrefslogtreecommitdiff
path: root/src/static/js
diff options
context:
space:
mode:
authorJohn McLear <john@mclear.co.uk>2014-11-06 17:38:38 +0000
committerJohn McLear <john@mclear.co.uk>2014-11-06 17:38:38 +0000
commitfc5152c2f3199ec6056fc97a04eda3afd733eae0 (patch)
tree23bbe454d69654beaa173531ea94f1125cceb92f /src/static/js
parentc7061e47db8aa7828461fc3344e69a6b4dc6d319 (diff)
downloadetherpad-lite-fc5152c2f3199ec6056fc97a04eda3afd733eae0.zip
remove logging
Diffstat (limited to 'src/static/js')
-rw-r--r--src/static/js/pluginfw/installer.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/static/js/pluginfw/installer.js b/src/static/js/pluginfw/installer.js
index 7480e152..c1a9adad 100644
--- a/src/static/js/pluginfw/installer.js
+++ b/src/static/js/pluginfw/installer.js
@@ -66,7 +66,6 @@ exports.getAvailablePlugins = function(maxCacheAge, cb) {
if(exports.availablePlugins && maxCacheAge && Math.round(+new Date/1000)-cacheTimestamp <= maxCacheAge) {
return cb && cb(null, exports.availablePlugins)
}
- console.log("plugins", plugins);
plugins = JSON.parse(plugins);
exports.availablePlugins = plugins;
cacheTimestamp = Math.round(+new Date/1000);