mirror of
https://github.com/Akif9748/akf-forum.git
synced 2024-11-01 03:25:04 +03:00
15 lines
300 B
JavaScript
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
|
|
|
|
});
|
|
|
|
}
|