2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-20 20:00:36 +03:00
This commit is contained in:
Mark Otto
2019-07-12 16:56:26 -05:00
parent aaf03bdc9e
commit 39c4ca3970
41 changed files with 7187 additions and 6697 deletions
+10 -2
View File
@@ -204,7 +204,11 @@
_proto.show = function show() {
var _this = this;
EventHandler.trigger(this._element, Event.SHOW);
var showEvent = EventHandler.trigger(this._element, Event.SHOW);
if (showEvent.defaultPrevented) {
return;
}
if (this._config.animation) {
this._element.classList.add(ClassName.FADE);
@@ -244,7 +248,11 @@
return;
}
EventHandler.trigger(this._element, Event.HIDE);
var hideEvent = EventHandler.trigger(this._element, Event.HIDE);
if (hideEvent.defaultPrevented) {
return;
}
var complete = function complete() {
_this2._element.classList.add(ClassName.HIDE);