mirror of
https://github.com/Ionaru/easy-markdown-editor
synced 2025-07-24 10:24:29 -06:00
Remove empty localStorage entries
This commit is contained in:
parent
a49da28f4d
commit
ef213175ce
@ -1945,7 +1945,12 @@ EasyMDE.prototype.autosave = function () {
|
||||
this.options.autosave.loaded = true;
|
||||
}
|
||||
|
||||
localStorage.setItem('smde_' + this.options.autosave.uniqueId, easyMDE.value());
|
||||
var value = easyMDE.value();
|
||||
if (value !== '') {
|
||||
localStorage.setItem('smde_' + this.options.autosave.uniqueId, value);
|
||||
} else {
|
||||
localStorage.removeItem('smde_' + this.options.autosave.uniqueId);
|
||||
}
|
||||
|
||||
var el = document.getElementById('autosaved');
|
||||
if (el != null && el != undefined && el != '') {
|
||||
|
Loading…
x
Reference in New Issue
Block a user