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/alert.js
parenta26080c04723e23da352e8115a108130725faff2 (diff)
grunt
Diffstat (limited to 'js/dist/alert.js')
-rw-r--r--js/dist/alert.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/dist/alert.js b/js/dist/alert.js
index fc3d6f3a68..6c70501fc8 100644
--- a/js/dist/alert.js
+++ b/js/dist/alert.js
@@ -38,7 +38,7 @@ var Alert = function ($) {
var ClassName = {
ALERT: 'alert',
FADE: 'fade',
- IN: 'in'
+ ACTIVE: 'active'
};
/**
@@ -101,7 +101,7 @@ var Alert = function ($) {
};
Alert.prototype._removeElement = function _removeElement(element) {
- $(element).removeClass(ClassName.IN);
+ $(element).removeClass(ClassName.ACTIVE);
if (!Util.supportsTransitionEnd() || !$(element).hasClass(ClassName.FADE)) {
this._destroyElement(element);