From 39bbe70b54269903de5b4949cf91f1a625f24c3e Mon Sep 17 00:00:00 2001 From: =?utf8?q?Scott=20Gonz=C3=A1lez?= Date: Wed, 10 May 2017 09:02:53 -0400 Subject: [PATCH] Tests: Load the `jquery-1-7` module for all 1.x versions --- tests/lib/bootstrap.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/lib/bootstrap.js b/tests/lib/bootstrap.js index 1a0149160..8d63c8135 100644 --- a/tests/lib/bootstrap.js +++ b/tests/lib/bootstrap.js @@ -172,8 +172,8 @@ function migrateUrl() { } } - // Load the jQuery 1.7 fixes, if necessary - if ( parseFloat( parseUrl().jquery ) === 1.7 ) { + // Load the jQuery 1.x fixes, if necessary + if ( parseFloat( parseUrl().jquery ) < 2 ) { modules.push( "ui/jquery-1-7" ); } -- 2.39.5