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:
authorMark Otto <markdotto@gmail.com>2016-10-27 19:51:22 +0300
committerMark Otto <markdotto@gmail.com>2016-10-27 19:51:22 +0300
commit9dbfc90eae7b1eda2b0e0b501a7e223d0cce688c (patch)
tree12614406d4259c56cadf1c3f46b21ab93c67c551 /js/dist/popover.js
parenta26080c04723e23da352e8115a108130725faff2 (diff)
grunt
Diffstat (limited to 'js/dist/popover.js')
-rw-r--r--js/dist/popover.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/dist/popover.js b/js/dist/popover.js
index 52f39dea55..3b81cae0de 100644
--- a/js/dist/popover.js
+++ b/js/dist/popover.js
@@ -42,7 +42,7 @@ var Popover = function ($) {
var ClassName = {
FADE: 'fade',
- IN: 'in'
+ ACTIVE: 'active'
};
var Selector = {
@@ -95,7 +95,7 @@ var Popover = function ($) {
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).removeClass(ClassName.ACTIVE);
this.cleanupTether();
};