diff options
author | CodeMichael <michael@babler.us> | 2015-08-07 08:34:31 -0500 |
---|---|---|
committer | CodeMichael <michael@babler.us> | 2015-08-07 08:34:31 -0500 |
commit | 68e260783ca96c5984a98d32cbd2e6dc4205bd3b (patch) | |
tree | 4d0c9df3b0afb2026644ca39295f98c1cb762b71 /src/static | |
parent | 510f17c7cf20e06603a18681a68bb587497eb4f3 (diff) | |
parent | 3b08ea61585485ad73afa84a1daa07c68e1482b0 (diff) | |
download | etherpad-lite-68e260783ca96c5984a98d32cbd2e6dc4205bd3b.zip |
Merge pull request #2 from CodeMichael/patch-1
allow admin to run on a sub-directory
Diffstat (limited to 'src/static')
-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) { |