forked from GNUsocial/gnu-social
7cb9b153c7
darcs-hash:20080817153143-84dde-1ff56e4066c0905e8846876bc9de22eca999f826.gz
36 lines
1.0 KiB
JavaScript
36 lines
1.0 KiB
JavaScript
$(document).ready(function(){
|
|
// count character on keyup
|
|
function counter(){
|
|
var maxLength = 140;
|
|
var currentLength = $("#status_textarea").val().length;
|
|
var remaining = maxLength - 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 + " ";
|
|
if ($("#status_textarea")) {
|
|
$("#status_textarea").val(replyto);
|
|
$("#status_textarea").focus();
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|