From 349bb595b90fb9de9f7c73dca7a3fd30b969a4dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matthias=20Bartelme=C3=9F?= Date: Fri, 23 Mar 2012 20:19:41 +0100 Subject: [PATCH] corrected underscore path in hooks --- src/static/js/pluginfw/hooks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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");