Uses regular HTTP GET to new notice replyto page instead of JS when

notice_data-text is available.
This commit is contained in:
Sarven Capadisli 2009-01-28 15:25:50 +00:00
parent f761031d0a
commit e2d445abbb

View File

@ -202,6 +202,7 @@ function NoticeHover() {
}
function NoticeReply() {
if ($('#notice_data-text').length > 0) {
$('#content .notice').each(function() {
var notice = $(this);
$('.notice_reply', $(this)).click(function() {
@ -211,6 +212,7 @@ function NoticeReply() {
});
});
}
}
function NoticeReplySet(nick,id) {
rgx_username = /^[0-9a-zA-Z\-_.]*$/;