summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authormatthew.gregg <matthew.gregg@gmail.com>2008-06-24 13:46:13 -0400
committermatthew.gregg <matthew.gregg@gmail.com>2008-06-24 13:46:13 -0400
commit240989994dae2fffc2e06fb8a88356b4c8ebe4a0 (patch)
tree3706e191fd5d6750f7e3e5981189040813e0b39d /js
parent5593d4a50ba09b47c99ba5608911d50d99d54f33 (diff)
Char counter for notice update text area. http://laconi.ca/PITS/00094
Added a util.js and this uses JQuery. darcs-hash:20080624174613-982e4-1a6f11365957e6f4ed70b87ce64fb9938441f01f.gz
Diffstat (limited to 'js')
-rw-r--r--js/util.js21
1 files changed, 21 insertions, 0 deletions
diff --git a/js/util.js b/js/util.js
new file mode 100644
index 000000000..59a489170
--- /dev/null
+++ b/js/util.js
@@ -0,0 +1,21 @@
+$(document).ready(function(){
+ // count character on keyup
+ function counter(){
+ var maxLength = 140;
+ var currentLength = $("#status_textarea").val().length;
+ var remaining = 140 - currentLength;
+ $("#counter").text(remaining);
+
+ if(remaining <= 0) {
+ $("#counter").attr("class", "toomuch");
+ } else {
+ $("#counter").attr("class", "");
+ }
+ }
+
+ if ($("#status_textarea").length) {
+ $("#status_textarea").bind("keyup", counter);
+ }
+
+});
+