Clean up comments reply click handler.
This commit is contained in:
parent
727a49fb46
commit
01b390fcb7
@ -785,10 +785,9 @@ function highlightComment(id, checkvalue) {
|
|||||||
return confirm($msg);
|
return confirm($msg);
|
||||||
});
|
});
|
||||||
|
|
||||||
$('.comments_reply').click(function() {
|
$('.comments_reply').click(function(e) {
|
||||||
cf = window.open(this.href, 'CommentForm', 'width=800,height=600,toolbar=no,scrollbars=1,scrollbars,resize=1,resizable=1');
|
e.preventDefault();
|
||||||
cf.focus();
|
window.open(this.href, 'CommentForm', 'width=800,height=600,toolbar=no,scrollbars=1,scrollbars,resize=1,resizable=1').focus();
|
||||||
return false;
|
|
||||||
});
|
});
|
||||||
|
|
||||||
$('.comments_multidelete').click(function() {
|
$('.comments_multidelete').click(function() {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user