Added a set properties function to IgniteElement to help populate an element's events quickly.

This commit is contained in:
Matt Mo 2021-08-11 10:46:00 -07:00
parent b4545c9dc5
commit b353045019

View File

@ -167,6 +167,13 @@ class IgniteElement extends HTMLElement {
return ret; return ret;
} }
/**
* Sets all the property values on this element.
*/
setProperties(props) {
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
* ignite element and initializes everything. * ignite element and initializes everything.