Fix #125 Add characters count to status bar

pull/304/head
NicoHood 3 years ago
parent 62b95316b2
commit e1527365d2
No known key found for this signature in database
GPG Key ID: 51DAE9B7C1AE9161

@ -1677,7 +1677,7 @@ function EasyMDE(options) {
// Handle status bar
if (!Object.prototype.hasOwnProperty.call(options, 'status')) {
options.status = ['autosave', 'lines', 'words', 'cursor'];
options.status = ['autosave', 'lines', 'words', 'characters', 'cursor'];
if (options.uploadImage) {
options.status.unshift('upload-image');
@ -2590,7 +2590,14 @@ EasyMDE.prototype.createStatusbar = function (status) {
} else {
var name = status[i];
if (name === 'words') {
if (name === 'characters') {
defaultValue = function (el) {
el.innerHTML = cm.getValue().length;
};
onUpdate = function (el) {
el.innerHTML = cm.getValue().length;
};
} else if (name === 'words') {
defaultValue = function (el) {
el.innerHTML = wordCount(cm.getValue());
};

Loading…
Cancel
Save