1
1
Fork 0
mirror of https://github.com/Akif9748/akf-forum.git synced 2025-07-10 17:41:00 +03:00
akf-forum/src/public/js/editor.js
2023-05-25 17:47:54 +03:00

15 lines
300 B
JavaScript

function editor( uniqueId, textarea = document.getElementById("textarea")) {
return new SimpleMDE({
autosave: {
enabled: true,
uniqueId,
delay: 1000,
},// width: 100%;
element: textarea,
spellChecker: false
});
}