about summary refs log tree commit diff
path: root/app/javascript
diff options
context:
space:
mode:
authorkibigo! <marrus-sh@users.noreply.github.com>2017-06-25 19:19:52 -0700
committerkibigo! <marrus-sh@users.noreply.github.com>2017-06-25 19:19:52 -0700
commitb323e00bf38f490b6011505df2ff2b4db6b17421 (patch)
treef489b788e67160e985e36c223bddcb19ff607783 /app/javascript
parenta520b118e4653aa35a74eba6e1662dfc98fcd1cc (diff)
parent93fc8aa14c914d03643197306c325becbaed2581 (diff)
Merge branch 'master' of https://github.com/glitch-soc/mastodon
Diffstat (limited to 'app/javascript')
-rw-r--r--app/javascript/packs/public.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/javascript/packs/public.js b/app/javascript/packs/public.js
index a0e511b0a..150a60670 100644
--- a/app/javascript/packs/public.js
+++ b/app/javascript/packs/public.js
@@ -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);
     }
   });
 }