1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-18 03:11:19 +02:00

Run grunt.

[ci skip]
This commit is contained in:
XhmikosR
2015-10-27 07:31:49 +02:00
parent ee92e6d44d
commit 9dfb999fae
12 changed files with 24 additions and 24 deletions

View File

@@ -10,8 +10,8 @@ if (typeof jQuery === 'undefined') {
+function ($) {
var version = $.fn.jquery.split(' ')[0].split('.')
if ((version[0] < 2 && version[1] < 9) || (version[0] == 1 && version[1] == 9 && version[2] < 1)) {
throw new Error('Bootstrap\'s JavaScript requires jQuery version 1.9.1 or higher')
if (version[0] !== '2') {
throw new Error('Bootstrap\'s JavaScript requires jQuery version 2.x.x')
}
}(jQuery);

File diff suppressed because one or more lines are too long