]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Fixed Util.jQuery: window.$ is not reliable. Both Firefox and Chrome implements ...
authorEmil Müller <emil@alumis.no>
Wed, 16 Jan 2019 20:36:13 +0000 (21:36 +0100)
committerXhmikosR <xhmikosr@gmail.com>
Wed, 20 Feb 2019 20:05:45 +0000 (22:05 +0200)
js/src/util.js

index 7183aeb6ba761edc56258c5f400d14e923a03c51..5467b9dab5bd1ed31cd1d53d222a7fcc412cfd1d 100644 (file)
@@ -172,7 +172,7 @@ const Util = {
   },
 
   get jQuery() {
-    return window.$ || window.jQuery
+    return window.jQuery
   }
 }