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-24 11:12:45 +0300
committerJohann-S <johann.servoire@gmail.com>2017-10-24 13:39:25 +0300
commit62fbb23ee61999e362cd8ade6073732a46466077 (patch)
tree4407025061f33fc39da7526f544b773f7457078c /js/src/modal.js
parentca4ad8bee8000617c2ae1a08afe7af1103058776 (diff)
Change Rollup config to wrap our dist files with jQuery instead of $
Diffstat (limited to 'js/src/modal.js')
-rw-r--r--js/src/modal.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/src/modal.js b/js/src/modal.js
index cb7bef0ce3..95565aabcc 100644
--- a/js/src/modal.js
+++ b/js/src/modal.js
@@ -9,7 +9,7 @@ import Util from './util'
* --------------------------------------------------------------------------
*/
-const Modal = (() => {
+const Modal = (($) => {
/**
@@ -585,6 +585,6 @@ const Modal = (() => {
return Modal
-})(Util.jQuery)
+})($)
export default Modal