0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-29 21:52:22 +01:00

Merge pull request #18267 from twbs/v4-dev-xmr-revert-jquery2-requirement

Revert "Make jQuery 2.0 the minimum supported version."
This commit is contained in:
Chris Rebert 2015-11-16 00:00:21 -08:00
commit ed624a805a
2 changed files with 3 additions and 3 deletions

View File

@ -63,8 +63,8 @@ module.exports = function (grunt) {
'}\n', '}\n',
jqueryVersionCheck: '+function ($) {\n' + jqueryVersionCheck: '+function ($) {\n' +
' var version = $.fn.jquery.split(\' \')[0].split(\'.\')\n' + ' var version = $.fn.jquery.split(\' \')[0].split(\'.\')\n' +
' if (version[0] !== \'2\') {\n' + ' if ((version[0] < 2 && version[1] < 9) || (version[0] == 1 && version[1] == 9 && version[2] < 1) || (version[0] >= 3)) {\n' +
' throw new Error(\'Bootstrap\\\'s JavaScript requires jQuery version 2.x.x\')\n' + ' throw new Error(\'Bootstrap\\\'s JavaScript requires at least jQuery v1.9.1 but less than v3.0.0\')\n' +
' }\n' + ' }\n' +
'}(jQuery);\n\n', '}(jQuery);\n\n',

View File

@ -29,6 +29,6 @@
"test-infra" "test-infra"
], ],
"dependencies": { "dependencies": {
"jquery": "2" "jquery": "1.9.1 - 2"
} }
} }