diff options
author | Matthias Bartelmeß <mba@fourplusone.de> | 2012-03-23 20:19:41 +0100 |
---|---|---|
committer | Matthias Bartelmeß <mba@fourplusone.de> | 2012-03-23 20:19:41 +0100 |
commit | 349bb595b90fb9de9f7c73dca7a3fd30b969a4dc (patch) | |
tree | 45813ee4872af0e4cd8bfc2d7446158a02889207 /src/static/js/pluginfw/hooks.js | |
parent | e559df18ce7876c497bd6da64c3a1c0346f211f4 (diff) | |
download | etherpad-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.js | 2 |
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"); |