From d9bca5d5795f1003fd1ba3eb9ea3db9f5534a924 Mon Sep 17 00:00:00 2001 From: Matt Mo Date: Tue, 5 Jan 2021 10:32:39 -0800 Subject: [PATCH] Added ability to show toggle button for Drawer. --- drawer.js | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/drawer.js b/drawer.js index 3b489c6..eda6db4 100644 --- a/drawer.js +++ b/drawer.js @@ -121,6 +121,7 @@ class Drawer extends IgniteElement { get properties() { return { show: false, + showToggleButton: true, responsive: new IgniteProperty(true, (oldValue, value) => { //If responsive is false and mobile is true, set mobile to false. if (!value && this.mobile) { @@ -162,7 +163,7 @@ class Drawer extends IgniteElement { .child( new button() .class("open-btn") - .show([this.mobile, this.show], (mobile, show) => mobile && !show) + .show([this.mobile, this.show, this.showToggleButton], (mobile, show, toggle) => mobile && !show && toggle) .onClick(() => this.show = true) .child(""), new div() @@ -175,7 +176,7 @@ class Drawer extends IgniteElement { .child( new button() .class("close-btn") - .show([this.mobile, this.show], (mobile, show) => mobile && show) + .show([this.mobile, this.show, this.toggle], (mobile, show, toggle) => mobile && show && toggle) .onClick(() => this.show = false) .child("") )