aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--js/src/popover.js12
-rw-r--r--js/src/tooltip.js12
2 files changed, 14 insertions, 10 deletions
diff --git a/js/src/popover.js b/js/src/popover.js
index 19c1e42a4..aea1b9702 100644
--- a/js/src/popover.js
+++ b/js/src/popover.js
@@ -94,13 +94,15 @@ class Popover extends Tooltip {
return this.each(function () {
const data = Popover.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]()
})
}
}
diff --git a/js/src/tooltip.js b/js/src/tooltip.js
index b09ab0d0c..b0963a002 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]()
})
}
}