Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Rebert <github@chrisrebert.com>2015-11-16 10:28:11 +0300
committerXhmikosR <xhmikosr@gmail.com>2015-11-16 10:53:23 +0300
commit2a8b0ba1b291813c760bc8ace5af5707fbd371c9 (patch)
treeb86420d5b01a023ee51c43437bf318989c1c6ca6 /Gruntfile.js
parentadd3ce38f78094787634f6a145ad14bdfad57bb2 (diff)
Check for jQuery >= 3.
Reword jQuery version mismatch error message since jQuery v3 isn't supported.
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index c17c353d39..cfb9d459c4 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -63,8 +63,8 @@ module.exports = function (grunt) {
'}\n',
jqueryVersionCheck: '+function ($) {\n' +
' var version = $.fn.jquery.split(\' \')[0].split(\'.\')\n' +
- ' if ((version[0] < 2 && version[1] < 9) || (version[0] == 1 && version[1] == 9 && version[2] < 1)) {\n' +
- ' throw new Error(\'Bootstrap\\\'s JavaScript requires jQuery version 1.9.1 or higher\')\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 at least jQuery v1.9.1 but less than v3.0.0\')\n' +
' }\n' +
'}(jQuery);\n\n',