diff options
Diffstat (limited to 'js/util.js')
-rw-r--r-- | js/util.js | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/js/util.js b/js/util.js index e68a6bab2..deefc5844 100644 --- a/js/util.js +++ b/js/util.js @@ -19,10 +19,6 @@ $(document).ready(function(){ // count character on keyup function counter(event){ - if (event.keyCode == 13) { - $("#status_form").submit(); - } - var maxLength = 140; var currentLength = $("#status_textarea").val().length; var remaining = maxLength - currentLength; @@ -36,9 +32,16 @@ $(document).ready(function(){ } } - $("#status_textarea").bind("keyup", counter); + function submitonreturn(event) { + if (event.keyCode == 13) { + $("#status_form").submit(); + } + } if ($("#status_textarea").length) { + $("#status_textarea").bind("keyup", counter); + $("#status_textarea").bind("keydown", submitonreturn); + // run once in case there's something in there counter(); } |