From 9bc8713a97effc99ef436eedc0af6a2f262d6bd0 Mon Sep 17 00:00:00 2001 From: Matt Mo Date: Fri, 12 Feb 2021 18:53:55 -0800 Subject: [PATCH] Drawer now doesn't use important for it's display property. Chip list passes instance of list on search. --- chip-list.js | 2 +- drawer.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/chip-list.js b/chip-list.js index 64594ae..78c6435 100644 --- a/chip-list.js +++ b/chip-list.js @@ -214,7 +214,7 @@ class ChipList extends IgniteElement { if (this.onSearchCallback) { clearTimeout(this.onSearchCallback); } - this.onSearchCallback = setTimeout(() => this.onSearch(this.input.textContent.trim()), this.onSearchDelay); + this.onSearchCallback = setTimeout(() => this.onSearch(this, this.input.textContent.trim()), this.onSearchDelay); } }) ), diff --git a/drawer.js b/drawer.js index 754016a..8d22360 100644 --- a/drawer.js +++ b/drawer.js @@ -176,7 +176,7 @@ class Drawer extends IgniteElement { .style("width", this.width) .style("height", this.height) .style("padding", this.padding) - .style("display", this.show, true, value => value ? "flex" : "none") + .style("display", this.show, false, value => value ? "flex" : "none") .class(this.containerClass) .class("container") .child(