|
9 | 9 |
|
10 | 10 | },{}],2:[function(require,module,exports){ |
11 | 11 | /*! |
12 | | - * jQuery JavaScript Library v2.1.2 |
| 12 | + * jQuery JavaScript Library v2.1.3 |
13 | 13 | * http://jquery.com/ |
14 | 14 | * |
15 | 15 | * Includes Sizzle.js |
|
19 | 19 | * Released under the MIT license |
20 | 20 | * http://jquery.org/license |
21 | 21 | * |
22 | | - * Date: 2014-12-17T14:01Z |
| 22 | + * Date: 2014-12-18T15:11Z |
23 | 23 | */ |
24 | 24 |
|
25 | 25 | (function( global, factory ) { |
|
77 | 77 | // Use the correct document accordingly with window argument (sandbox) |
78 | 78 | document = window.document, |
79 | 79 |
|
80 | | - version = "2.1.2", |
| 80 | + version = "2.1.3", |
81 | 81 |
|
82 | 82 | // Define a local copy of jQuery |
83 | 83 | jQuery = function( selector, context ) { |
@@ -7582,7 +7582,7 @@ var |
7582 | 7582 | allTypes = "*/".concat( "*" ), |
7583 | 7583 |
|
7584 | 7584 | // Document location |
7585 | | - ajaxLocation = location.href, |
| 7585 | + ajaxLocation = window.location.href, |
7586 | 7586 |
|
7587 | 7587 | // Segment location into parts |
7588 | 7588 | ajaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || []; |
@@ -11194,8 +11194,10 @@ var LocationIndex = _location.LocationIndex; |
11194 | 11194 | }).sort(semver.compare); |
11195 | 11195 | if (versions.length) { |
11196 | 11196 | 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 | + } |
11199 | 11201 | } |
11200 | 11202 | } |
11201 | 11203 | // check for Bootstrap <link>s and <script>s |
|
0 commit comments