mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-19 22:23:33 +01:00
tests: Use relative paths in helper.init()
This avoids problems if Etherpad is served under a path like `/etherpad`.
This commit is contained in:
parent
dfd649dbe9
commit
e144434571
1 changed files with 2 additions and 2 deletions
|
@ -7,11 +7,11 @@ const helper = {};
|
|||
const jsLibraries = {};
|
||||
|
||||
helper.init = (cb) => {
|
||||
$.get('/static/js/vendors/jquery.js').done((code) => {
|
||||
$.get('../../static/js/vendors/jquery.js').done((code) => {
|
||||
// make sure we don't override existing jquery
|
||||
jsLibraries.jquery = `if(typeof $ === 'undefined') {\n${code}\n}`;
|
||||
|
||||
$.get('/tests/frontend/lib/sendkeys.js').done((code) => {
|
||||
$.get('lib/sendkeys.js').done((code) => {
|
||||
jsLibraries.sendkeys = code;
|
||||
|
||||
cb();
|
||||
|
|
Loading…
Reference in a new issue