summaryrefslogtreecommitdiff
path: root/src/static/js/pluginfw/hooks.js
diff options
context:
space:
mode:
authorMatthias Bartelmeß <mba@fourplusone.de>2012-03-23 20:19:41 +0100
committerMatthias Bartelmeß <mba@fourplusone.de>2012-03-23 20:19:41 +0100
commit349bb595b90fb9de9f7c73dca7a3fd30b969a4dc (patch)
tree45813ee4872af0e4cd8bfc2d7446158a02889207 /src/static/js/pluginfw/hooks.js
parente559df18ce7876c497bd6da64c3a1c0346f211f4 (diff)
downloadetherpad-lite-349bb595b90fb9de9f7c73dca7a3fd30b969a4dc.zip
corrected underscore path in hooks
Diffstat (limited to 'src/static/js/pluginfw/hooks.js')
-rw-r--r--src/static/js/pluginfw/hooks.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/static/js/pluginfw/hooks.js b/src/static/js/pluginfw/hooks.js
index dbf8e583..9c04023f 100644
--- a/src/static/js/pluginfw/hooks.js
+++ b/src/static/js/pluginfw/hooks.js
@@ -4,7 +4,7 @@ var _;
/* FIXME: Ugly hack, in the future, use same code for server & client */
if (plugins.isClient) {
var async = require("ep_etherpad-lite/static/js/pluginfw/async");
- _ = require("underscore");
+ _ = require("ep_etherpad-lite/static/js/underscore");
} else {
var async = require("async");
_ = require("underscore");