diff options
| author | Starsam80 <[email protected]> | 2016-10-27 16:13:17 -0600 |
|---|---|---|
| committer | Starsam80 <[email protected]> | 2016-12-07 21:20:15 -0700 |
| commit | bf39bb3ac3d2aef4687b3cd4762015d5f218e2bc (patch) | |
| tree | 968d25a858633f88255e3cc6c923f07a7c44d36c /js/src/popover.js | |
| parent | ede925d79bf92d5983a4508c6ed6fda9310e1e8b (diff) | |
| download | bootstrap-bf39bb3ac3d2aef4687b3cd4762015d5f218e2bc.tar.xz bootstrap-bf39bb3ac3d2aef4687b3cd4762015d5f218e2bc.zip | |
Rename `.active` to `.show`
Diffstat (limited to 'js/src/popover.js')
| -rw-r--r-- | js/src/popover.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/js/src/popover.js b/js/src/popover.js index a08ed4de9..33bc9e48c 100644 --- a/js/src/popover.js +++ b/js/src/popover.js @@ -37,8 +37,8 @@ const Popover = (($) => { }) const ClassName = { - FADE : 'fade', - ACTIVE : 'active' + FADE : 'fade', + SHOW : 'show' } const Selector = { @@ -117,7 +117,7 @@ const Popover = (($) => { this.setElementContent($tip.find(Selector.TITLE), this.getTitle()) this.setElementContent($tip.find(Selector.CONTENT), this._getContent()) - $tip.removeClass(`${ClassName.FADE} ${ClassName.ACTIVE}`) + $tip.removeClass(`${ClassName.FADE} ${ClassName.SHOW}`) this.cleanupTether() } |
