This commit is contained in:
Akif9748 2022-09-17 21:43:04 +03:00
parent 3671ecc863
commit c32db6dc28
2 changed files with 2 additions and 5 deletions

View File

@ -48,8 +48,7 @@ window.edit_message = async function (id) {
editing = new SimpleMDE({
element: cnt,
spellChecker: false,
height: "200px",
previewRender: t => converter.makeHtml(t)
height: "200px"
});
editing.value(content.rawText)
}

View File

@ -127,9 +127,7 @@
delay: 1000,
},
element: textarea,
spellChecker: false,
previewRender: t=> converter.makeHtml(t)
spellChecker: false
});
import request from "../../js/request.js";