mirror of https://github.com/twbs/bootstrap.git
grunt
This commit is contained in:
parent
5ebc46cec3
commit
15b7ce59df
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -296,7 +296,7 @@ var Alert = (function ($) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$(element).one(Util.TRANSITION_END, this._destroyElement.bind(this, element)).emulateTransitionEnd(TRANSITION_DURATION);
|
$(element).one(Util.TRANSITION_END, $.proxy(this._destroyElement, this, element)).emulateTransitionEnd(TRANSITION_DURATION);
|
||||||
}
|
}
|
||||||
}, {
|
}, {
|
||||||
key: '_destroyElement',
|
key: '_destroyElement',
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -140,7 +140,7 @@
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$(element).one(_Util['default'].TRANSITION_END, this._destroyElement.bind(this, element)).emulateTransitionEnd(TRANSITION_DURATION);
|
$(element).one(_Util['default'].TRANSITION_END, $.proxy(this._destroyElement, this, element)).emulateTransitionEnd(TRANSITION_DURATION);
|
||||||
}
|
}
|
||||||
}, {
|
}, {
|
||||||
key: '_destroyElement',
|
key: '_destroyElement',
|
||||||
|
|
|
@ -123,7 +123,7 @@ var Alert = (function ($) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
$(element).one(Util.TRANSITION_END, this._destroyElement.bind(this, element)).emulateTransitionEnd(TRANSITION_DURATION);
|
$(element).one(Util.TRANSITION_END, $.proxy(this._destroyElement, this, element)).emulateTransitionEnd(TRANSITION_DURATION);
|
||||||
}
|
}
|
||||||
}, {
|
}, {
|
||||||
key: '_destroyElement',
|
key: '_destroyElement',
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue