aboutsummaryrefslogtreecommitdiff
path: root/js/src/carousel.js
diff options
context:
space:
mode:
authorGeoSot <[email protected]>2022-03-02 00:57:28 +0200
committerXhmikosR <[email protected]>2022-03-09 17:25:47 +0200
commite77ae50311366b07225d15b19e330a3871123437 (patch)
treebef55c537ae3a161df144a71975fa093a9a68b07 /js/src/carousel.js
parent21fa2cfc122938ba34fcf94770fe2d6d2dfd7842 (diff)
downloadbootstrap-e77ae50311366b07225d15b19e330a3871123437.tar.xz
bootstrap-e77ae50311366b07225d15b19e330a3871123437.zip
Carousel: cleanup jQueryInterface
Drop chained else ifs and unused variable. Since we were checking for `typeof config === 'string'` in both places, action was never `_config.slide`.
Diffstat (limited to 'js/src/carousel.js')
-rw-r--r--js/src/carousel.js18
1 files changed, 11 insertions, 7 deletions
diff --git a/js/src/carousel.js b/js/src/carousel.js
index ea258527d..afe02f5b7 100644
--- a/js/src/carousel.js
+++ b/js/src/carousel.js
@@ -442,17 +442,21 @@ class Carousel extends BaseComponent {
}
}
- const action = typeof config === 'string' ? config : _config.slide
-
if (typeof config === 'number') {
data.to(config)
- } else if (typeof action === 'string') {
- if (typeof data[action] === 'undefined') {
- throw new TypeError(`No method named "${action}"`)
+ return
+ }
+
+ if (typeof config === 'string') {
+ if (data[config] === undefined || config.startsWith('_') || config === 'constructor') {
+ throw new TypeError(`No method named "${config}"`)
}
- data[action]()
- } else if (_config.interval && _config.ride) {
+ data[config]()
+ return
+ }
+
+ if (_config.interval && _config.ride) {
data.pause()
data.cycle()
}