Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohann-S <johann.servoire@gmail.com>2017-10-23 10:35:27 +0300
committerXhmikosR <xhmikosr@gmail.com>2017-10-23 10:35:27 +0300
commit1487c3a9947b0eb55c61b5d93ff9f0c69a812aeb (patch)
tree5f05dafe9448cb79d9ea8ffa2dc86a15d3f59ea6 /js/src/button.js
parent0d71a8a738688455746e91f7806fa0515c96d263 (diff)
Add `Util.jQuery` which will detect jQuery instead of relying on global `$` (#24513)
Diffstat (limited to 'js/src/button.js')
-rw-r--r--js/src/button.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/js/src/button.js b/js/src/button.js
index 9227da9516..87e724346f 100644
--- a/js/src/button.js
+++ b/js/src/button.js
@@ -1,4 +1,6 @@
import $ from 'jquery'
+import Util from './util'
+
/**
* --------------------------------------------------------------------------
* Bootstrap (v4.0.0-beta.2): button.js
@@ -182,6 +184,6 @@ const Button = (() => {
return Button
-})($)
+})(Util.jQuery)
export default Button