mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-19 14:13:34 +01:00
move sendkeys to lib folder
This commit is contained in:
parent
a12c26c56e
commit
6fefadee88
3 changed files with 3 additions and 3 deletions
|
@ -10,7 +10,7 @@ var helper = {};
|
|||
// make sure we don't override existing jquery
|
||||
jsLibraries["jquery"] = "if(typeof $ === 'undefined') {\n" + code + "\n}";
|
||||
|
||||
$.get('/tests/frontend/sendkeys.js').done(function(code){
|
||||
$.get('/tests/frontend/lib/sendkeys.js').done(function(code){
|
||||
jsLibraries["sendkeys"] = code;
|
||||
|
||||
cb();
|
||||
|
|
|
@ -14,9 +14,9 @@
|
|||
<script> mocha.setup('bdd') </script>
|
||||
<script src="lib/expect.js"></script>
|
||||
|
||||
<script src="helper.js"></script>
|
||||
<script src="sendkeys.js"></script>
|
||||
<script src="lib/sendkeys.js"></script>
|
||||
<script src="lib/jquery.iframe.js"></script>
|
||||
<script src="helper.js"></script>
|
||||
|
||||
<script src="specs/helper.js"></script>
|
||||
<script src="specs/button_bold.js"></script>
|
||||
|
|
Loading…
Reference in a new issue