Renamed connected to elementConnected in order to avoid property naming conflicts.

This commit is contained in:
Matt Mo 2021-01-05 21:09:12 -08:00
parent 9ca2f9e63d
commit 5e276a0ddb

View File

@ -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.