This commit is contained in:
kibigo!
2017-06-25 19:19:52 -07:00
6 changed files with 17 additions and 5 deletions

View File

@ -87,7 +87,7 @@ function main() {
delegate(document, '.account_note', 'input', ({ target }) => {
const noteCounter = document.querySelector('.note-counter');
if (noteCounter) {
noteCounter.textContent = 160 - length(target.value);
noteCounter.textContent = 500 - length(target.value);
}
});
}