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:
authorGeoSot <geo.sotis@gmail.com>2021-11-25 21:33:42 +0300
committerXhmikosR <xhmikosr@gmail.com>2021-12-01 19:00:36 +0300
commit53c77c020368dbd570bd2d29ffc0c3660a0f6ab3 (patch)
tree517b786ab0dd4939568a38c7982e52c58b2a112f /js/src/tooltip.js
parenta5945369bdcaccb5d80589b9e9b0fab67e8a4e9c (diff)
Tooltip: refactor jQueryInterface
Diffstat (limited to 'js/src/tooltip.js')
-rw-r--r--js/src/tooltip.js12
1 files changed, 7 insertions, 5 deletions
diff --git a/js/src/tooltip.js b/js/src/tooltip.js
index b09ab0d0ca..b0963a0021 100644
--- a/js/src/tooltip.js
+++ b/js/src/tooltip.js
@@ -637,13 +637,15 @@ class Tooltip extends BaseComponent {
return this.each(function () {
const data = Tooltip.getOrCreateInstance(this, config)
- if (typeof config === 'string') {
- if (typeof data[config] === 'undefined') {
- throw new TypeError(`No method named "${config}"`)
- }
+ if (typeof config !== 'string') {
+ return
+ }
- data[config]()
+ if (typeof data[config] === 'undefined') {
+ throw new TypeError(`No method named "${config}"`)
}
+
+ data[config]()
})
}
}