mirror of
https://github.com/sparksuite/simplemde-markdown-editor.git
synced 2025-09-24 16:40:55 -06:00
Merge a6d958107b41c67d0f552184501d7ca36a3b651d into 6abda7ab68cc20f4aca870eb243747951b90ab04
This commit is contained in:
commit
2fa58c0b78
@ -1553,6 +1553,11 @@ SimpleMDE.prototype.autosave = function() {
|
|||||||
|
|
||||||
if(simplemde.element.form != null && simplemde.element.form != undefined) {
|
if(simplemde.element.form != null && simplemde.element.form != undefined) {
|
||||||
simplemde.element.form.addEventListener("submit", function() {
|
simplemde.element.form.addEventListener("submit", function() {
|
||||||
|
/**
|
||||||
|
* Remove the autosave function to stop resaving the MDE after the
|
||||||
|
* submit has been started.
|
||||||
|
*/
|
||||||
|
SimpleMDE.prototype.autosave = function(){};
|
||||||
localStorage.removeItem("smde_" + simplemde.options.autosave.uniqueId);
|
localStorage.removeItem("smde_" + simplemde.options.autosave.uniqueId);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user