aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEmil Müller <[email protected]>2019-01-16 21:36:13 +0100
committerXhmikosR <[email protected]>2019-02-20 22:05:45 +0200
commit049a500d18b1d00dcdceac11df6590fb3c182793 (patch)
tree7c4592f05df1ebb62e338b1580e3f472973131de
parentc096e0e0da1a972bb1088956e0d1dd0fcc88015a (diff)
downloadbootstrap-049a500d18b1d00dcdceac11df6590fb3c182793.tar.xz
bootstrap-049a500d18b1d00dcdceac11df6590fb3c182793.zip
Fixed Util.jQuery: window.$ is not reliable. Both Firefox and Chrome implements $ natively.
-rw-r--r--js/src/util.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/util.js b/js/src/util.js
index 7183aeb6b..5467b9dab 100644
--- a/js/src/util.js
+++ b/js/src/util.js
@@ -172,7 +172,7 @@ const Util = {
},
get jQuery() {
- return window.$ || window.jQuery
+ return window.jQuery
}
}