Adding more documentation to make it easier when writing extensions.
This commit is contained in:
parent
2d99f31bd4
commit
46ff7743a1
@ -50,10 +50,19 @@ class IgniteElement extends HTMLElement {
|
|||||||
constructor() {
|
constructor() {
|
||||||
super();
|
super();
|
||||||
|
|
||||||
|
/** @type {Boolean} */
|
||||||
this.elementConnected = false; //Used to know if the connectedCallback was already called.
|
this.elementConnected = false; //Used to know if the connectedCallback was already called.
|
||||||
|
|
||||||
|
/** @type {IgniteTemplate} */
|
||||||
this.template = null;
|
this.template = null;
|
||||||
|
|
||||||
|
/** @type {HTMLElement[]} */
|
||||||
this.elements = [];
|
this.elements = [];
|
||||||
|
|
||||||
|
/** @type {IgniteCallback} */
|
||||||
this.readyCallback = new IgniteCallback(() => this.ready());
|
this.readyCallback = new IgniteCallback(() => this.ready());
|
||||||
|
|
||||||
|
/** @type {IgniteCallback[]} */
|
||||||
this.onDisconnectCallbacks = [];
|
this.onDisconnectCallbacks = [];
|
||||||
|
|
||||||
//Create the variables for this element.
|
//Create the variables for this element.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user