How do you turn off spellcheck in quill?
I've tried:
document.body.setAttribute('spellcheck', false);
and
var quillEditor = new Quill('#editor-container', {
theme: 'bubble',
readOnly: false,
modules: {
history: {
delay: 2000,
maxStack: 100
}
}
});
quillEditor.spellcheck = false;
quillEditor.focus();
quillEditor.blur();
And neither is working
@joshoconnor89 The following should turn off spellcheck
const quill = new Quill('#editor-container')
quill.root.setAttribute('spellcheck', false)
Thanks RyanV.
Most helpful comment
@joshoconnor89 The following should turn off spellcheck