Skip to content

Commit ac0ba6f

Browse files
committed
grunt dist
1 parent eee11ad commit ac0ba6f

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

dist/browser/bootlint.js

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
},{}],2:[function(require,module,exports){
1111
/*!
12-
* jQuery JavaScript Library v2.1.2
12+
* jQuery JavaScript Library v2.1.3
1313
* http://jquery.com/
1414
*
1515
* Includes Sizzle.js
@@ -19,7 +19,7 @@
1919
* Released under the MIT license
2020
* http://jquery.org/license
2121
*
22-
* Date: 2014-12-17T14:01Z
22+
* Date: 2014-12-18T15:11Z
2323
*/
2424

2525
(function( global, factory ) {
@@ -77,7 +77,7 @@ var
7777
// Use the correct document accordingly with window argument (sandbox)
7878
document = window.document,
7979

80-
version = "2.1.2",
80+
version = "2.1.3",
8181

8282
// Define a local copy of jQuery
8383
jQuery = function( selector, context ) {
@@ -7582,7 +7582,7 @@ var
75827582
allTypes = "*/".concat( "*" ),
75837583

75847584
// Document location
7585-
ajaxLocation = location.href,
7585+
ajaxLocation = window.location.href,
75867586

75877587
// Segment location into parts
75887588
ajaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || [];
@@ -11194,8 +11194,10 @@ var LocationIndex = _location.LocationIndex;
1119411194
}).sort(semver.compare);
1119511195
if (versions.length) {
1119611196
var minVersion = versions[0];
11197-
reporter(OUTDATED_BOOTSTRAP + minVersion);
11198-
return;
11197+
if (semver.lt(minVersion, CURRENT_BOOTSTRAP_VERSION, true)) {
11198+
reporter(OUTDATED_BOOTSTRAP + minVersion);
11199+
return;
11200+
}
1119911201
}
1120011202
}
1120111203
// check for Bootstrap <link>s and <script>s

0 commit comments

Comments
 (0)