From 84608c3ff8fe51654868546cca6e64730d06286e Mon Sep 17 00:00:00 2001 From: Yamagishi Kazutoshi Date: Mon, 22 May 2017 11:45:55 +0900 Subject: Add translations for counter of profile (#3214) ref #3101 --- app/javascript/packs/public.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'app/javascript/packs/public.js') diff --git a/app/javascript/packs/public.js b/app/javascript/packs/public.js index 096c8af80..38ef7203e 100644 --- a/app/javascript/packs/public.js +++ b/app/javascript/packs/public.js @@ -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); + } }); -- cgit