From 049a500d18b1d00dcdceac11df6590fb3c182793 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emil=20M=C3=BCller?= Date: Wed, 16 Jan 2019 21:36:13 +0100 Subject: [PATCH] Fixed Util.jQuery: window.$ is not reliable. Both Firefox and Chrome implements $ natively. --- js/src/util.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } }