diff options
author | AUTOMATIC <16777216c@gmail.com> | 2023-01-17 11:15:47 +0000 |
---|---|---|
committer | AUTOMATIC <16777216c@gmail.com> | 2023-01-17 11:15:47 +0000 |
commit | 38b7186e6e3a4dffc93225308b822f0dae43a47d (patch) | |
tree | 5840bd52fadea6271d0dbeb819de5214fde21285 /javascript/edit-attention.js | |
parent | aede265f1d6d512ca9e51a305e98a96a215366c4 (diff) | |
download | stable-diffusion-webui-gfx803-38b7186e6e3a4dffc93225308b822f0dae43a47d.tar.gz stable-diffusion-webui-gfx803-38b7186e6e3a4dffc93225308b822f0dae43a47d.tar.bz2 stable-diffusion-webui-gfx803-38b7186e6e3a4dffc93225308b822f0dae43a47d.zip |
update sending input event in java script to not cause exception in browser https://github.com/gradio-app/gradio/issues/2981
Diffstat (limited to 'javascript/edit-attention.js')
-rw-r--r-- | javascript/edit-attention.js | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/javascript/edit-attention.js b/javascript/edit-attention.js index b947cbec..ccc8344a 100644 --- a/javascript/edit-attention.js +++ b/javascript/edit-attention.js @@ -69,7 +69,6 @@ addEventListener('keydown', (event) => { target.selectionStart = selectionStart;
target.selectionEnd = selectionEnd;
}
- // Since we've modified a Gradio Textbox component manually, we need to simulate an `input` DOM event to ensure its
- // internal Svelte data binding remains in sync.
- target.dispatchEvent(new Event("input", { bubbles: true }));
+
+ updateInput(target)
});
|