1
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-08-13 00:54:04 +02: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

12
js/dist/toast.js vendored
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);