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

Commit

Permalink
[Web] テキストボックスに画像が貼り付けられる問題を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
Raclamusi committed Jan 1, 2024
1 parent 826a85c commit d91d152
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Siv3D/lib/Web/jslib/Siv3D.TextInput.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ mergeInto(LibraryManager.library, {
siv3dInitTextInput: function() {
const textInput = document.createElement("div");
textInput.id = "textinput";
textInput.contentEditable = true;
textInput.contentEditable = "plaintext-only";
textInput.style.position = "absolute";
textInput.style.width = "100px";
textInput.style.zIndex = -2;
Expand Down

0 comments on commit d91d152

Please sign in to comment.