0
0
Fork 0

update bio length to 500

This commit is contained in:
beatrix-bitrot 2017-05-16 02:25:53 +00:00
parent 96e1f75679
commit c0a665865e
3 changed files with 3 additions and 3 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);
}
});
}