Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

テキストボックスに画像が貼り付けられる #54

Open
Raclamusi opened this issue Dec 27, 2023 · 0 comments
Open

テキストボックスに画像が貼り付けられる #54

Raclamusi opened this issue Dec 27, 2023 · 0 comments
Labels
unexpected result Something isn't working

Comments

@Raclamusi
Copy link

問題

テキストボックスに Ctrl+V で画像を貼り付けることができ、その結果、貼り付けた画像がはみ出た分だけ画面がずれるなどの問題が発生します。

image

解決策

テキスト入力のために使っている <div>contenteditable 属性を plaintext-only にすることで、テキスト以外入力できないようにできます。

textInput.contentEditable = true;

textInput.contentEditable = "plaintext-only";
@Raclamusi Raclamusi added the unexpected result Something isn't working label Dec 27, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
unexpected result Something isn't working
Projects
None yet
Development

No branches or pull requests

1 participant