Simplifying EditableLabel on change event fire logic.

This commit is contained in:
Matt Mo 2020-11-18 11:26:50 -08:00
parent e4846a96de
commit d194ed6959

View File

@ -55,10 +55,7 @@ class EditableLabel extends IgniteElement {
return {
stopEditingOnBlur: true,
editing: false,
value: new IgniteProperty(null, () => {
//Emulate a change event to support value reflection.
this.dispatchEvent(new Event("change"));
}),
value: null,
multiLine: false,
saveButton: true,
input: null,
@ -102,6 +99,9 @@ class EditableLabel extends IgniteElement {
if (this.input.innerHTML !== this.value) {
this.value = this.input.innerHTML;
//Dispatch a native change event
this.dispatchEvent(new Event("change"));
}
}
}