From 5e276a0ddbf8ddd88bdb1a677f3b872c09df61f2 Mon Sep 17 00:00:00 2001 From: Matt Mo Date: Tue, 5 Jan 2021 21:09:12 -0800 Subject: [PATCH] Renamed connected to elementConnected in order to avoid property naming conflicts. --- ignite-element.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ignite-element.js b/ignite-element.js index c11d07c..9d70c10 100644 --- a/ignite-element.js +++ b/ignite-element.js @@ -50,7 +50,7 @@ class IgniteElement extends HTMLElement { constructor() { super(); - this.connected = false; + this.elementConnected = false; this.onDisconnected = null; this.template = null; this.elements = []; @@ -175,10 +175,10 @@ class IgniteElement extends HTMLElement { //Only run this if we haven't been connected before. //If this element is moved the instance will be the same but it will call this again //and we want to trap this and not run the code below twice. - if (this.connected) { + if (this.elementConnected) { return; } else { - this.connected = true; + this.elementConnected = true; } //See if a styling sheet has been created for this element if it's needed.