0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00
Bootstrap/js/dist/index.js

23 lines
913 B
JavaScript
Raw Normal View History

2017-09-06 06:05:12 +02:00
/**
* --------------------------------------------------------------------------
2019-11-26 18:12:00 +01:00
* Bootstrap (v4.4.0): index.js
2017-09-06 06:05:12 +02:00
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* --------------------------------------------------------------------------
*/
2017-10-25 21:31:55 +02:00
(function ($) {
2017-10-16 00:51:44 +02:00
if (typeof $ === 'undefined') {
2018-01-12 07:42:40 +01:00
throw new TypeError('Bootstrap\'s JavaScript requires jQuery. jQuery must be included before Bootstrap\'s JavaScript.');
2017-09-06 06:05:12 +02:00
}
var version = $.fn.jquery.split(' ')[0].split('.');
2017-10-19 18:13:17 +02:00
var minMajor = 1;
var ltMajor = 2;
var minMinor = 9;
var minPatch = 1;
var maxMajor = 4;
2017-09-30 23:28:03 +02:00
2017-10-19 18:13:17 +02:00
if (version[0] < ltMajor && version[1] < minMinor || version[0] === minMajor && version[1] === minMinor && version[2] < minPatch || version[0] >= maxMajor) {
throw new Error('Bootstrap\'s JavaScript requires at least jQuery v1.9.1 but less than v4.0.0');
2017-09-06 06:05:12 +02:00
}
2017-10-16 00:51:44 +02:00
})($);
2017-09-06 06:05:12 +02:00
//# sourceMappingURL=index.js.map