0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-29 21:52:22 +01:00
This commit is contained in:
J2TeaM 2016-09-07 10:09:54 +07:00
parent 4f5a7c96e7
commit 4f520c7ff3
No known key found for this signature in database
GPG Key ID: EFEE20AE04DFEE31
2 changed files with 2 additions and 6 deletions

View File

@ -119,9 +119,7 @@ const Popover = (($) => {
this.setElementContent($tip.find(Selector.TITLE), this.getTitle())
this.setElementContent($tip.find(Selector.CONTENT), this._getContent())
$tip
.removeClass(ClassName.FADE)
.removeClass(ClassName.IN)
$tip.removeClass(`${ClassName.FADE} ${ClassName.IN}`)
this.cleanupTether()
}

View File

@ -371,9 +371,7 @@ const Tooltip = (($) => {
this.setElementContent($tip.find(Selector.TOOLTIP_INNER), this.getTitle())
$tip
.removeClass(ClassName.FADE)
.removeClass(ClassName.IN)
$tip.removeClass(`${ClassName.FADE} ${ClassName.IN}`)
this.cleanupTether()
}