aboutsummaryrefslogtreecommitdiff
path: root/js/src/tab.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/tab.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/tab.js')
-rw-r--r--js/src/tab.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/src/tab.js b/js/src/tab.js
index f1d9ec0c8..1d4178687 100644
--- a/js/src/tab.js
+++ b/js/src/tab.js
@@ -9,7 +9,7 @@ import Util from './util'
* --------------------------------------------------------------------------
*/
-const Tab = (() => {
+const Tab = (($) => {
/**
@@ -282,6 +282,6 @@ const Tab = (() => {
return Tab
-})(Util.jQuery)
+})($)
export default Tab