diff options
author | Michał Gołębiowski <m.goleb@gmail.com> | 2015-11-12 15:30:23 +0100 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2015-11-14 06:12:55 -0500 |
commit | 15586ea752486f7db108a804622f47746e462391 (patch) | |
tree | f125c6c115e69c74e6a687b059dfcefda0c93730 /tests/lib/bootstrap.js | |
parent | cd7f8f02cf84d395bf0f06b752fe8572d4871482 (diff) | |
download | jquery-ui-15586ea752486f7db108a804622f47746e462391.tar.gz jquery-ui-15586ea752486f7db108a804622f47746e462391.zip |
Build: Use jquery-git in place of jquery-compat-git
jQuery Compat is not going to get released after all; jQuery UI should be tested
against jquery-git instead of jquery-compat-git.
Closes gh-1646
Diffstat (limited to 'tests/lib/bootstrap.js')
-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 2fe2edd1b..4e374ac27 100644 --- a/tests/lib/bootstrap.js +++ b/tests/lib/bootstrap.js @@ -93,7 +93,7 @@ function jqueryUrl() { var version = parseUrl().jquery; var url; - if ( version === "git" || version === "compat-git" ) { + if ( version === "git" ) { url = "http://code.jquery.com/jquery-" + version; } else { url = "../../../external/jquery-" + ( version || "1.11.3" ) + "/jquery"; |