Enable spellcheck in notepad mode

This commit is contained in:
turboderp
2024-03-03 00:26:45 +01:00
parent 787e1cf930
commit 2d21044cdb

View File

@@ -134,7 +134,7 @@ class NotepadView {
this.editor = document.createElement("textarea");
this.editor.className = "notepad-editor";
this.editor.spellcheck = false;
this.editor.spellcheck = true;
//this.editor.contentEditable = "true";
//this.editor.useRichtext = true;
//this.editor.addEventListener("paste", (event) => { this.paste(event); });