gd-bs 5.9.7 → 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.
- package/build/components/modal/index.js +2 -2
- package/build/components/popover/index.js +1 -0
- package/dist/gd-bs-icons.js +1 -1
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.js +1 -1
- package/dist/gd-bs.min.js +1 -1
- package/package.json +1 -1
- package/src/components/modal/index.ts +3 -3
- package/src/components/popover/index.ts +1 -0
package/package.json
CHANGED
|
@@ -184,9 +184,6 @@ class _Modal extends Base<IModalProps> implements IModal {
|
|
|
184
184
|
elClose.addEventListener("click", () => {
|
|
185
185
|
// Hide the modal
|
|
186
186
|
this.hide();
|
|
187
|
-
|
|
188
|
-
// Call the event
|
|
189
|
-
this.props.onClose ? this.props.onClose(this.el) : null;
|
|
190
187
|
});
|
|
191
188
|
}
|
|
192
189
|
|
|
@@ -370,6 +367,9 @@ class _Modal extends Base<IModalProps> implements IModal {
|
|
|
370
367
|
|
|
371
368
|
// Set the flag
|
|
372
369
|
this._tranisitioningFl = false;
|
|
370
|
+
|
|
371
|
+
// Call the event
|
|
372
|
+
this.props.onClose ? this.props.onClose(this.el) : null;
|
|
373
373
|
}, 250);
|
|
374
374
|
} else {
|
|
375
375
|
// Start the animation
|