2
0
mirror of https://github.com/Ionaru/easy-markdown-editor synced 2025-07-01 23:24:28 -06:00

Merge pull request #102 from arduanov/patch-2

Fix autosave
This commit is contained in:
Wes Cossick 2015-09-17 01:06:10 -05:00
commit cd17552bf6

View File

@ -871,7 +871,7 @@ SimpleMDE.prototype.autosave = function() {
}
if(this.options.autosave.loaded !== true) {
if(localStorage.getItem(this.options.autosave.unique_id) != null)
if(typeof localStorage.getItem(this.options.autosave.unique_id) == "string" && localStorage.getItem(this.options.autosave.unique_id) != "")
this.codemirror.setValue(localStorage.getItem(this.options.autosave.unique_id));
this.options.autosave.loaded = true;