2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-05-21 13:24:08 +03:00

Fixed Util.jQuery: window.$ is not reliable. Both Firefox and Chrome implements $ natively.

This commit is contained in:
Emil Müller
2019-01-16 21:36:13 +01:00
committed by XhmikosR
parent c096e0e0da
commit 049a500d18
+1 -1
View File
@@ -172,7 +172,7 @@ const Util = {
},
get jQuery() {
return window.$ || window.jQuery
return window.jQuery
}
}