diff options
| author | Emil Müller <[email protected]> | 2019-01-16 21:36:13 +0100 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2019-02-20 22:05:45 +0200 |
| commit | 049a500d18b1d00dcdceac11df6590fb3c182793 (patch) | |
| tree | 7c4592f05df1ebb62e338b1580e3f472973131de /js/src | |
| parent | c096e0e0da1a972bb1088956e0d1dd0fcc88015a (diff) | |
| download | bootstrap-049a500d18b1d00dcdceac11df6590fb3c182793.tar.xz bootstrap-049a500d18b1d00dcdceac11df6590fb3c182793.zip | |
Fixed Util.jQuery: window.$ is not reliable. Both Firefox and Chrome implements $ natively.
Diffstat (limited to 'js/src')
| -rw-r--r-- | js/src/util.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/src/util.js b/js/src/util.js index 7183aeb6b..5467b9dab 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 } } |
