diff options
author | goldquest <tjwelde@gmail.com> | 2013-01-22 16:42:56 +0100 |
---|---|---|
committer | goldquest <tjwelde@gmail.com> | 2013-01-22 16:42:56 +0100 |
commit | 666c0adcd270e442a252b68274cac2bcdc1682fb (patch) | |
tree | 5b02bf0178f24155acb122f9d3d0ee2933515139 /src/node/handler/ImportHandler.js | |
parent | 7869a543dd5ce36b64ab96c5410b6b9762dbe538 (diff) | |
download | etherpad-lite-666c0adcd270e442a252b68274cac2bcdc1682fb.zip |
script tag didn't link to right location
Diffstat (limited to 'src/node/handler/ImportHandler.js')
-rw-r--r-- | src/node/handler/ImportHandler.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node/handler/ImportHandler.js b/src/node/handler/ImportHandler.js index 5ec07390..b8700141 100644 --- a/src/node/handler/ImportHandler.js +++ b/src/node/handler/ImportHandler.js @@ -176,7 +176,7 @@ exports.doImport = function(req, res, padId) ERR(err); //close the connection - res.send("<head><script type='text/javascript' src='/static/js/jquery.js'></script></head><script>$(window).load(function(){if ( (!$.browser.msie) && (!($.browser.mozilla && $.browser.version.indexOf(\"1.8.\") == 0)) ){document.domain = document.domain;}var impexp = window.parent.require('/pad_impexp').padimpexp.handleFrameCall('" + status + "');})</script>", 200); + res.send("<head><script type='text/javascript' src='../../static/js/jquery.js'></script></head><script>$(window).load(function(){if ( (!$.browser.msie) && (!($.browser.mozilla && $.browser.version.indexOf(\"1.8.\") == 0)) ){document.domain = document.domain;}var impexp = window.parent.require('/pad_impexp').padimpexp.handleFrameCall('" + status + "');})</script>", 200); }); } |