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:
Diffstat (limited to 'js/src/carousel.js')
-rw-r--r--js/src/carousel.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/src/carousel.js b/js/src/carousel.js
index b5cbf98b48..10ed2203ed 100644
--- a/js/src/carousel.js
+++ b/js/src/carousel.js
@@ -9,7 +9,7 @@ import Util from './util'
* --------------------------------------------------------------------------
*/
-const Carousel = (() => {
+const Carousel = (($) => {
/**
@@ -519,6 +519,6 @@ const Carousel = (() => {
return Carousel
-})(Util.jQuery)
+})($)
export default Carousel