]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - js/util.js
CSRF protection in user registration
[quix0rs-gnu-social.git] / js / util.js
index 59a48917029097ce2d15f09d32735aec2f4a563a..accbff13c0dc051788651ae8904d446b2288d2e7 100644 (file)
@@ -1,21 +1,35 @@
 $(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;
-            $("#counter").text(remaining);
+            var remaining = maxLength - currentLength;
+            var counter   = $("#counter");
+            counter.text(remaining);
 
-            if(remaining <= 0) {
-                $("#counter").attr("class", "toomuch");
-                } else {
-                $("#counter").attr("class", "");
-                }
+            if (remaining <= 0) {
+                counter.attr("class", "toomuch");
+            } else {
+                counter.attr("class", "");
+            }
         }
-
+     
         if ($("#status_textarea").length) {
             $("#status_textarea").bind("keyup", counter);
+            // run once in case there's something in there
+            counter();
         }
-
 });
 
+function doreply(nick) {
+     rgx_username = /^[0-9a-zA-Z\-_.]*$/;
+     if (nick.match(rgx_username)) {
+          replyto = "@" + nick + " ";
+          if ($("#status_textarea")) {
+               $("#status_textarea").val(replyto);
+               $("#status_textarea").focus();
+          }
+     }
+     return false;
+}
+