Browse Source

CustomCategory: Disable spellcheck in textarea

master
parent
commit
63d73d3fdb
  1. 1
      src/customCategory.js

1
src/customCategory.js

@ -98,6 +98,7 @@ class CustomCategoryEditor {
})
this.textarea = document.createElement('textarea')
this.textarea.spellcheck = false
this.window.content.appendChild(this.textarea)
if (this.content !== undefined) {
this.textarea.value = this.content

Loading…
Cancel
Save