pull/729/merge
Joppss 5 years ago committed by GitHub
commit b8d5956d2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1365,7 +1365,7 @@ function SimpleMDE(options) {
// Handle status bar
if(!options.hasOwnProperty("status")) {
options.status = ["autosave", "lines", "words", "cursor"];
options.status = ["autosave", "lines", "words", "cursor", "characters"];
}
@ -1859,7 +1859,14 @@ SimpleMDE.prototype.createStatusbar = function(status) {
el.setAttribute("id", "autosaved");
}
};
}
} else if(name === "characters") {
defaultValue = function(el) {
el.innerHTML = "0"
};
onUpdate = function(el) {
el.innerHTML = cm.getValue().length;
};
}
items.push({
className: name,

Loading…
Cancel
Save