aboutsummaryrefslogtreecommitdiff
path: root/js/src/index.js
diff options
context:
space:
mode:
authorJohann-S <[email protected]>2018-03-11 16:18:56 +0100
committerXhmikosR <[email protected]>2019-02-20 22:05:45 +0200
commit7eddee286eb76da4d057a59706e4c512206dab45 (patch)
tree5319cd291c015fcec49e2af0cb1c890d0d966927 /js/src/index.js
parent0263d1742ce8ad25f0f2de30beebae69b2f55f10 (diff)
downloadbootstrap-7eddee286eb76da4d057a59706e4c512206dab45.tar.xz
bootstrap-7eddee286eb76da4d057a59706e4c512206dab45.zip
remove old references to jquery and some fixes
Diffstat (limited to 'js/src/index.js')
-rw-r--r--js/src/index.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/js/src/index.js b/js/src/index.js
index 665b889c5..327de242b 100644
--- a/js/src/index.js
+++ b/js/src/index.js
@@ -17,21 +17,6 @@ import Util from './util'
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
* --------------------------------------------------------------------------
*/
-(() => {
- // only check jQuery version if jQuery is available
- if (typeof window.$ !== 'undefined' || typeof window.jQuery !== 'undefined') {
- const version = window.$.fn.jquery.split(' ')[0].split('.')
- const minMajor = 1
- const ltMajor = 2
- const minMinor = 9
- const minPatch = 1
- const maxMajor = 4
-
- 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')
- }
- }
-})()
export {
Util,