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/popover.js
parentca4ad8bee8000617c2ae1a08afe7af1103058776 (diff)
Change Rollup config to wrap our dist files with jQuery instead of $
Diffstat (limited to 'js/src/popover.js')
-rw-r--r--js/src/popover.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/js/src/popover.js b/js/src/popover.js
index 28cb511fc8..4fb96a792e 100644
--- a/js/src/popover.js
+++ b/js/src/popover.js
@@ -1,6 +1,5 @@
import $ from 'jquery'
import Tooltip from './tooltip'
-import Util from './util'
/**
@@ -10,7 +9,7 @@ import Util from './util'
* --------------------------------------------------------------------------
*/
-const Popover = (() => {
+const Popover = (($) => {
/**
@@ -190,6 +189,6 @@ const Popover = (() => {
return Popover
-})(Util.jQuery)
+})($)
export default Popover