diff options
author | Scott González <scott.gonzalez@gmail.com> | 2017-05-31 14:09:05 -0400 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2017-05-31 14:09:05 -0400 |
commit | 74f8a0ac952f6f45f773312292baef1c26d81300 (patch) | |
tree | f0089f3a6900f0d1462088d4dcef1e8718913b5a | |
parent | 6fdd0e34a74789d2da214739ea0f5a8feff71d7e (diff) | |
download | jquery-ui-74f8a0ac952f6f45f773312292baef1c26d81300.tar.gz jquery-ui-74f8a0ac952f6f45f773312292baef1c26d81300.zip |
Tests: Load `jquery-1-7` before other modules
-rw-r--r-- | tests/lib/bootstrap.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/lib/bootstrap.js b/tests/lib/bootstrap.js index 7f1e12dd0..487b3b807 100644 --- a/tests/lib/bootstrap.js +++ b/tests/lib/bootstrap.js @@ -174,7 +174,7 @@ function migrateUrl() { // Load the jQuery fixes, if necessary if ( parseFloat( parseUrl().jquery ) < 3 ) { - modules.push( "ui/jquery-1-7" ); + modules.unshift( "ui/jquery-1-7" ); } requireTests( modules, noBackCompat ); |