Upgraded dialogs to use afterRender to setup the bootstrap modal instead of ready to avoid race conditions.
This commit is contained in:
parent
a0e8d517c4
commit
270a5fbabf
2
modal.js
2
modal.js
@ -34,7 +34,7 @@ class Modal extends IgniteElement {
|
||||
)
|
||||
}
|
||||
|
||||
ready() {
|
||||
afterRender() {
|
||||
this.modalInstance = new bootstrap.Modal(this.modal, { backdrop: this.backdropClose ? "true" : "static" });
|
||||
}
|
||||
|
||||
|
@ -53,9 +53,11 @@ class OkDialog extends IgniteElement {
|
||||
)
|
||||
}
|
||||
|
||||
ready() {
|
||||
afterRender() {
|
||||
this.modal = new bootstrap.Modal(this.modalElement, { backdrop: "static" });
|
||||
}
|
||||
|
||||
ready() {
|
||||
if (this.autoOpen) {
|
||||
this.open();
|
||||
}
|
||||
|
@ -63,9 +63,11 @@ class YesNoDialog extends IgniteElement {
|
||||
)
|
||||
}
|
||||
|
||||
ready() {
|
||||
afterRender() {
|
||||
this.modal = new bootstrap.Modal(this.modalElement, { backdrop: "static" });
|
||||
}
|
||||
|
||||
ready() {
|
||||
if (this.autoOpen) {
|
||||
this.open();
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user