aboutsummaryrefslogtreecommitdiff
path: root/js/src/util.js
diff options
context:
space:
mode:
authorJohann-S <[email protected]>2017-10-24 10:12:45 +0200
committerJohann-S <[email protected]>2017-10-24 12:39:25 +0200
commit62fbb23ee61999e362cd8ade6073732a46466077 (patch)
tree4407025061f33fc39da7526f544b773f7457078c /js/src/util.js
parentca4ad8bee8000617c2ae1a08afe7af1103058776 (diff)
downloadbootstrap-62fbb23ee61999e362cd8ade6073732a46466077.tar.xz
bootstrap-62fbb23ee61999e362cd8ade6073732a46466077.zip
Change Rollup config to wrap our dist files with jQuery instead of $
Diffstat (limited to 'js/src/util.js')
-rw-r--r--js/src/util.js6
1 files changed, 1 insertions, 5 deletions
diff --git a/js/src/util.js b/js/src/util.js
index 1fa55494e..71f93a7c5 100644
--- a/js/src/util.js
+++ b/js/src/util.js
@@ -7,7 +7,7 @@ import $ from 'jquery'
* --------------------------------------------------------------------------
*/
-const Util = (() => {
+const Util = (($) => {
/**
@@ -152,10 +152,6 @@ const Util = (() => {
}
}
}
- },
-
- get jQuery() {
- return window.jQuery || window.$
}
}