0
0
Fork 0

Add translations for counter of profile (#3214)

ref #3101
This commit is contained in:
Yamagishi Kazutoshi 2017-05-22 11:45:55 +09:00 committed by Eugen Rochko
parent b69365e397
commit 84608c3ff8
11 changed files with 32 additions and 28 deletions

View file

@ -98,10 +98,14 @@ delegate(document, '.status__content__spoiler-link', 'click', ({ target }) => {
delegate(document, '.account_display_name', 'input', ({ target }) => {
const nameCounter = document.querySelector('.name-counter');
nameCounter.textContent = 30 - length(target.value);
if (nameCounter) {
nameCounter.textContent = 30 - length(target.value);
}
});
delegate(document, '.account_note', 'input', ({ target }) => {
const noteCounter = document.querySelector('.note-counter');
noteCounter.textContent = 160 - length(target.value);
if (noteCounter) {
noteCounter.textContent = 160 - length(target.value);
}
});