Skip to content

Commit 049a500

Browse files
Emil MüllerXhmikosR
authored andcommitted
Fixed Util.jQuery: window.$ is not reliable. Both Firefox and Chrome implements $ natively.
1 parent c096e0e commit 049a500

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

js/src/util.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,7 @@ const Util = {
172172
},
173173

174174
get jQuery() {
175-
return window.$ || window.jQuery
175+
return window.jQuery
176176
}
177177
}
178178

0 commit comments

Comments
 (0)