pull/729/merge
Joppss 6 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 // Handle status bar
if(!options.hasOwnProperty("status")) { 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"); el.setAttribute("id", "autosaved");
} }
}; };
} } else if(name === "characters") {
defaultValue = function(el) {
el.innerHTML = "0"
};
onUpdate = function(el) {
el.innerHTML = cm.getValue().length;
};
}
items.push({ items.push({
className: name, className: name,

Loading…
Cancel
Save