Added functionality for characters count

This commit is contained in:
Jakob Nilsson 2018-11-30 10:19:53 +01:00
parent e32fe3f91c
commit 0a53779b54

View file

@ -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,