diff options
-rw-r--r-- | tests/lib/bootstrap.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/lib/bootstrap.js b/tests/lib/bootstrap.js index 46e0e8ad2..2fe2edd1b 100644 --- a/tests/lib/bootstrap.js +++ b/tests/lib/bootstrap.js @@ -140,6 +140,11 @@ function jqueryUrl() { } } + // Load the jQuery 1.7 fixes, if necessary + if ( parseFloat( parseUrl().jquery ) === 1.7 ) { + modules.push( "ui/jquery-1-7" ); + } + requireTests( modules, noBackCompat ); } )(); |