mirror of
https://github.com/status-im/codimd.git
synced 2025-01-27 16:55:19 +00:00
Fix spellcheck settings from cookies might not a boolean in string type
This commit is contained in:
parent
b8ff9112ef
commit
246c9da574
@ -508,7 +508,7 @@ function setSpellcheck() {
|
||||
var cookieSpellcheck = Cookies.get('spellcheck');
|
||||
if (cookieSpellcheck) {
|
||||
var mode = null;
|
||||
if (cookieSpellcheck === 'true') {
|
||||
if (cookieSpellcheck === 'true' || cookieSpellcheck === true) {
|
||||
mode = 'spell-checker';
|
||||
} else {
|
||||
mode = 'gfm';
|
||||
|
Loading…
x
Reference in New Issue
Block a user