pull/182/head
Wes Cossick 9 years ago
parent a64f07e1c3
commit 9d0b313320

File diff suppressed because one or more lines are too long

@ -13795,52 +13795,67 @@ SimpleMDE.prototype.render = function(el) {
}; };
SimpleMDE.prototype.autosave = function() { SimpleMDE.prototype.autosave = function() {
var simplemde = this; if(localStorage) {
var simplemde = this;
if(this.options.autosave.uniqueId == undefined || this.options.autosave.uniqueId == "") { if(this.options.autosave.uniqueId == undefined || this.options.autosave.uniqueId == "") {
console.log("SimpleMDE: You must set a uniqueId to use the autosave feature"); console.log("SimpleMDE: You must set a uniqueId to use the autosave feature");
return; return;
} }
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() {
localStorage.setItem(simplemde.options.autosave.uniqueId, ""); localStorage.removeItem("smde_" + simplemde.options.autosave.uniqueId);
}); });
} }
if(this.options.autosave.loaded !== true) { if(this.options.autosave.loaded !== true) {
if(typeof localStorage.getItem(this.options.autosave.uniqueId) == "string" && localStorage.getItem(this.options.autosave.uniqueId) != "") if(typeof localStorage.getItem("smde_" + this.options.autosave.uniqueId) == "string" && localStorage.getItem("smde_" + this.options.autosave.uniqueId) != "")
this.codemirror.setValue(localStorage.getItem(this.options.autosave.uniqueId)); this.codemirror.setValue(localStorage.getItem("smde_" + this.options.autosave.uniqueId));
this.options.autosave.loaded = true; this.options.autosave.loaded = true;
} }
if(localStorage) { localStorage.setItem("smde_" + this.options.autosave.uniqueId, simplemde.value());
localStorage.setItem(this.options.autosave.uniqueId, simplemde.value());
} var el = document.getElementById("autosaved");
if(el != null && el != undefined && el != "") {
var d = new Date();
var hh = d.getHours();
var m = d.getMinutes();
var dd = "am";
var h = hh;
if(h >= 12) {
h = hh - 12;
dd = "pm";
}
if(h == 0) {
h = 12;
}
m = m < 10 ? "0" + m : m;
var el = document.getElementById("autosaved"); el.innerHTML = "Autosaved: " + h + ":" + m + " " + dd;
if(el != null && el != undefined && el != "") {
var d = new Date();
var hh = d.getHours();
var m = d.getMinutes();
var dd = "am";
var h = hh;
if(h >= 12) {
h = hh - 12;
dd = "pm";
}
if(h == 0) {
h = 12;
} }
m = m < 10 ? "0" + m : m;
el.innerHTML = "Autosaved: " + h + ":" + m + " " + dd; setTimeout(function() {
simplemde.autosave();
}, this.options.autosave.delay || 10000);
} else {
console.log("SimpleMDE: localStorage not available, cannot autosave");
} }
};
setTimeout(function() { SimpleMDE.prototype.clearAutosavedValue = function() {
simplemde.autosave(); if(localStorage) {
}, this.options.autosave.delay || 10000); if(this.options.autosave.uniqueId == undefined || this.options.autosave.uniqueId == "") {
console.log("SimpleMDE: You must set a uniqueId to use the autosave feature");
return;
}
localStorage.removeItem("smde_" + this.options.autosave.uniqueId);
} else {
console.log("SimpleMDE: localStorage not available, cannot autosave");
}
}; };
SimpleMDE.prototype.createSideBySide = function() { SimpleMDE.prototype.createSideBySide = function() {

File diff suppressed because one or more lines are too long
Loading…
Cancel
Save