Added ability to disable backdrop close feature for modals.
This commit is contained in:
parent
81f13416ae
commit
24906572d7
24
modal.js
24
modal.js
@ -10,24 +10,32 @@ class Modal extends IgniteElement {
|
|||||||
return {
|
return {
|
||||||
dialogClasses: null,
|
dialogClasses: null,
|
||||||
modal: null,
|
modal: null,
|
||||||
modalInstance: null
|
modalInstance: null,
|
||||||
|
backdropClose: true
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
return this.template.child(
|
return this.template.child(
|
||||||
new div().class("modal").ref(this.modal).child(
|
new div()
|
||||||
new div().class("modal-dialog").class(this.dialogClasses).child(
|
.class("modal")
|
||||||
new div().class("modal-content").child(
|
.data("backdrop", this.backdropClose, (value) => !value ? "static" : null)
|
||||||
new slot(this)
|
.ref(this.modal)
|
||||||
)
|
.child(
|
||||||
|
new div()
|
||||||
|
.class("modal-dialog")
|
||||||
|
.class(this.dialogClasses)
|
||||||
|
.child(
|
||||||
|
new div().class("modal-content").child(
|
||||||
|
new slot(this)
|
||||||
|
)
|
||||||
|
)
|
||||||
)
|
)
|
||||||
)
|
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
ready() {
|
ready() {
|
||||||
this.modalInstance = new bootstrap.Modal(this.modal);
|
this.modalInstance = new bootstrap.Modal(this.modal, { backdrop: this.backdropClose ? "true" : "static" });
|
||||||
}
|
}
|
||||||
|
|
||||||
show() {
|
show() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user