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:
authorXhmikosR <xhmikosr@gmail.com>2020-01-07 23:07:51 +0300
committerGitHub <noreply@github.com>2020-01-07 23:07:51 +0300
commit9c2b9ac74d4abb5ec8b7864054315de3409d5f3a (patch)
treebdd48def07c5ef9c88c01c15554e3acada526b59 /js/src/popover.js
parenta7945d4501377cd42afd49c0e885b0e1923b36cc (diff)
Use regex.test() when we want to check for a Boolean. (#29969)
Diffstat (limited to 'js/src/popover.js')
-rw-r--r--js/src/popover.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/js/src/popover.js b/js/src/popover.js
index a633af4ba0..d71a78236c 100644
--- a/js/src/popover.js
+++ b/js/src/popover.js
@@ -135,7 +135,6 @@ class Popover extends Tooltip {
_cleanTipClass() {
const tip = this.getTipElement()
const tabClass = tip.getAttribute('class').match(BSCLS_PREFIX_REGEX)
-
if (tabClass !== null && tabClass.length > 0) {
tabClass.map(token => token.trim())
.forEach(tClass => tip.classList.remove(tClass))