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.
@@ -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 {
@@ -201,6 +201,7 @@ var _Popover = /** @class */ (function (_super) {
201
201
  // Set the options
202
202
  var options = __assign({
203
203
  allowHTML: true,
204
+ appendTo: document.body,
204
205
  animation: "scale",
205
206
  arrow: true,
206
207
  delay: 100,