editable-label now uses inner text for value instead of inner html to fix a bug in IOS where a <br> tag is inserted into the element for some reason.
This commit is contained in:
parent
47e83a4148
commit
60eb43cd47
@ -117,8 +117,8 @@ class EditableLabel extends IgniteElement {
|
|||||||
this.editing = false;
|
this.editing = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.input.innerHTML !== this.value) {
|
if (this.input.innerText !== this.value) {
|
||||||
this.value = this.input.innerHTML;
|
this.value = this.input.innerText;
|
||||||
|
|
||||||
//Dispatch a native change event
|
//Dispatch a native change event
|
||||||
this.dispatchEvent(new CustomEvent("change", { bubbles: true }));
|
this.dispatchEvent(new CustomEvent("change", { bubbles: true }));
|
||||||
|
Loading…
x
Reference in New Issue
Block a user