ignite-html/src/ignite-html.js

28 lines
458 B
JavaScript
Raw Normal View History

class IgniteProperty {
constructor() {
this.onPropertyChange = [];
this._value = null;
}
get value() {
return this._value;
}
set value(val) {
var old = this._value;
this._value = val;
for (var i = 0; i < this.onPropertyChange.length; i++) {
this.onPropertyChange[i](old, val);
}
}
}
class IgniteAttribute {
}
export {
IgniteProperty,
IgniteAttribute
};