ai-comic-factory / src /lib /putTextInInput.ts
jbilcke-hf's picture
jbilcke-hf HF staff
add a new experimental feature
421fbba
raw
history blame
No virus
455 Bytes
export function putTextInInput(input?: HTMLInputElement, text: string = "") {
if (!input) { return }
const nativeTextAreaValueSetter = Object.getOwnPropertyDescriptor(
window.HTMLInputElement.prototype,
"value"
)?.set;
// fallback
if (!nativeTextAreaValueSetter) {
input.value = text
return
}
nativeTextAreaValueSetter.call(input, text)
const event = new Event('input', { bubbles: true });
input.dispatchEvent(event)
}