From: Evan Prodromou Date: Tue, 1 Jul 2008 18:30:16 +0000 (-0400) Subject: run the counter once at page load time X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=409bc56ff2379bac62d9073484ea8e7be2af0b14;p=quix0rs-gnu-social.git run the counter once at page load time darcs-hash:20080701183016-84dde-f1aed06f7bd67a665ba55c03f036d98bd208c3b9.gz --- diff --git a/js/util.js b/js/util.js index 7eae496fd0..4f2e7c724d 100644 --- a/js/util.js +++ b/js/util.js @@ -1,7 +1,7 @@ $(document).ready(function(){ // count character on keyup - function counter(){ - var maxLength = 140; + function counter(){ + var maxLength = 140; var currentLength = $("#status_textarea").val().length; var remaining = 140 - currentLength; var counter = $("#counter"); @@ -16,7 +16,8 @@ $(document).ready(function(){ if ($("#status_textarea").length) { $("#status_textarea").bind("keyup", counter); + // run once in case there's something in there + counter(); } - });