Renamed connected to elementConnected in order to avoid property naming conflicts.
This commit is contained in:
parent
9ca2f9e63d
commit
5e276a0ddb
@ -50,7 +50,7 @@ class IgniteElement extends HTMLElement {
|
|||||||
constructor() {
|
constructor() {
|
||||||
super();
|
super();
|
||||||
|
|
||||||
this.connected = false;
|
this.elementConnected = false;
|
||||||
this.onDisconnected = null;
|
this.onDisconnected = null;
|
||||||
this.template = null;
|
this.template = null;
|
||||||
this.elements = [];
|
this.elements = [];
|
||||||
@ -175,10 +175,10 @@ class IgniteElement extends HTMLElement {
|
|||||||
//Only run this if we haven't been connected before.
|
//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
|
//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.
|
//and we want to trap this and not run the code below twice.
|
||||||
if (this.connected) {
|
if (this.elementConnected) {
|
||||||
return;
|
return;
|
||||||
} else {
|
} else {
|
||||||
this.connected = true;
|
this.elementConnected = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
//See if a styling sheet has been created for this element if it's needed.
|
//See if a styling sheet has been created for this element if it's needed.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user