gd-bs 5.9.8 → 5.9.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -192,8 +192,6 @@ var _Modal = /** @class */ (function (_super) {
|
|
|
192
192
|
elClose.addEventListener("click", function () {
|
|
193
193
|
// Hide the modal
|
|
194
194
|
_this.hide();
|
|
195
|
-
// Call the event
|
|
196
|
-
_this.props.onClose ? _this.props.onClose(_this.el) : null;
|
|
197
195
|
});
|
|
198
196
|
}
|
|
199
197
|
// See if the keyboard option is set
|
|
@@ -361,6 +359,8 @@ var _Modal = /** @class */ (function (_super) {
|
|
|
361
359
|
backdrop = null;
|
|
362
360
|
// Set the flag
|
|
363
361
|
_this._tranisitioningFl = false;
|
|
362
|
+
// Call the event
|
|
363
|
+
_this.props.onClose ? _this.props.onClose(_this.el) : null;
|
|
364
364
|
}, 250);
|
|
365
365
|
}
|
|
366
366
|
else {
|