Added auto close option to drawer.
This commit is contained in:
parent
85662f7777
commit
8c021053a3
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user