diff options
author | CodeMichael <michael@babler.us> | 2015-08-07 08:30:29 -0500 |
---|---|---|
committer | CodeMichael <michael@babler.us> | 2015-08-07 08:30:29 -0500 |
commit | 3b08ea61585485ad73afa84a1daa07c68e1482b0 (patch) | |
tree | 5612b1a2395ca9a190f247e6417dbbd0734fcd95 | |
parent | 02c022aab14f9087e22cebd4123336935cc089d8 (diff) | |
download | etherpad-lite-3b08ea61585485ad73afa84a1daa07c68e1482b0.zip |
allow admin to run on a sub-directory
-rw-r--r-- | src/static/js/admin/plugins.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/static/js/admin/plugins.js b/src/static/js/admin/plugins.js index d337da03..48d1ab70 100644 --- a/src/static/js/admin/plugins.js +++ b/src/static/js/admin/plugins.js @@ -11,7 +11,7 @@ $(document).ready(function () { //connect var room = url + "pluginfw/installer"; - socket = io.connect(room, {resource : resource}); + socket = io.connect(room, {path: baseURL + "socket.io", resource : resource}); function search(searchTerm, limit) { if(search.searchTerm != searchTerm) { |