blob: 50c311f993b558e420067552b540690c5c013ac8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
$(document).ready(function(){
// count character on keyup
function counter(){
var maxLength = 140;
var currentLength = $("#status_textarea").val().length;
var remaining = 140 - currentLength;
var counter = $("#counter");
counter.text(remaining);
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 + " ";
document.getElementById("status_textarea").value=replyto;
document.getElementById("status_textarea").focus();
}
}
|