Added auto close option to drawer.

This commit is contained in:
MattMo 2023-04-14 08:05:40 -07:00
parent 85662f7777
commit 8c021053a3

View File

@ -134,6 +134,7 @@ class Drawer extends IgniteElement {
this.update(); //If responsive is changed we must update.
}),
mobile: false,
autoClose: true,
placement: "left",
width: "20em",
height: null,
@ -195,8 +196,16 @@ class Drawer extends IgniteElement {
if (this.responsive) {
if (window.innerWidth <= this.breakpoint && !this.mobile) {
this.mobile = true;
if (this.autoClose) {
this.show = false;
}
} else if (window.innerWidth > this.breakpoint && this.mobile) {
this.mobile = false;
if (this.autoClose) {
this.show = true;
}
}
}
}