From: Emil Müller Date: Wed, 16 Jan 2019 20:36:13 +0000 (+0100) Subject: Fixed Util.jQuery: window.$ is not reliable. Both Firefox and Chrome implements ... X-Git-Tag: v5.0.0-alpha1~1277 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=049a500d18b1d00dcdceac11df6590fb3c182793;p=thirdparty%2Fbootstrap.git Fixed Util.jQuery: window.$ is not reliable. Both Firefox and Chrome implements $ natively. --- diff --git a/js/src/util.js b/js/src/util.js index 7183aeb6ba..5467b9dab5 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 } }