Added null check to props.
This commit is contained in:
parent
b353045019
commit
1bc054903c
@ -171,8 +171,10 @@ class IgniteElement extends HTMLElement {
|
|||||||
* Sets all the property values on this element.
|
* Sets all the property values on this element.
|
||||||
*/
|
*/
|
||||||
setProperties(props) {
|
setProperties(props) {
|
||||||
|
if (props) {
|
||||||
Object.keys(props).forEach(name => this[name] = props[name]);
|
Object.keys(props).forEach(name => this[name] = props[name]);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates the getters/setters for properties in this
|
* Creates the getters/setters for properties in this
|
||||||
|
Loading…
x
Reference in New Issue
Block a user