Fixed a bug where on a class change we didn't check to see if the element existed.
This commit is contained in:
parent
63ed3a42f9
commit
e4602b710d
@ -1378,11 +1378,13 @@ class IgniteTemplate {
|
|||||||
|
|
||||||
//For any classes that are missing on the element, add them. If we have duplicates this
|
//For any classes that are missing on the element, add them. If we have duplicates this
|
||||||
//can happen.
|
//can happen.
|
||||||
this._classes.forEach((cl) => {
|
if (this.element) {
|
||||||
if (!this.element.classList.contains(cl)) {
|
this._classes.forEach((cl) => {
|
||||||
this.element.classList.add(cl);
|
if (!this.element.classList.contains(cl)) {
|
||||||
}
|
this.element.classList.add(cl);
|
||||||
});
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
x
Reference in New Issue
Block a user