summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorsarven <csarven@plantard.controlezvous.ca>2009-01-23 02:43:18 +0000
committersarven <csarven@plantard.controlezvous.ca>2009-01-23 02:43:18 +0000
commit0daf242100925396aad4cc9fea5de0de2ec98ce8 (patch)
tree258b8fbc0dcb95ab55e7f9556a205d516592d3d9 /js
parentcf387ad4ab27c678f67dfb6163bfdee732a92c27 (diff)
Using util.js to set onclick reply anchor
Diffstat (limited to 'js')
-rw-r--r--js/util.js18
1 files changed, 16 insertions, 2 deletions
diff --git a/js/util.js b/js/util.js
index de486cf74..6ca5f8cbc 100644
--- a/js/util.js
+++ b/js/util.js
@@ -176,6 +176,7 @@ $(document).ready(function(){
counter();
$("#notices_primary .notice:first").css({display:"none"});
$("#notices_primary .notice:first").fadeIn(2500);
+ NoticeHover();
}
$("#notice_action-submit").removeAttr("disabled");
$("#notice_action-submit").removeClass("disabled");
@@ -184,6 +185,19 @@ $(document).ready(function(){
$("#form_notice").ajaxForm(PostNotice);
$("#form_notice").each(addAjaxHidden);
+ NoticeHover();
+
+ $('#content .notice').each(function() {
+ var notice = $(this);
+ $('.notice_reply', $(this)).click(function() {
+ var nickname = ($('.author .nickname', notice).length > 0) ? $('.author .nickname', notice) : $('.author .nickname');
+ NoticeReply(nickname.text(), $('.notice_id', notice).text());
+ return false;
+ });
+ });
+});
+
+function NoticeHover() {
$("#content .notice").hover(
function () {
$(this).addClass('hover');
@@ -192,9 +206,9 @@ $(document).ready(function(){
$(this).removeClass('hover');
}
);
-});
+}
-function doreply(nick,id) {
+function NoticeReply(nick,id) {
rgx_username = /^[0-9a-zA-Z\-_.]*$/;
if (nick.match(rgx_username)) {
replyto = "@" + nick + " ";