prefix comment ID with c, so it isn't just a random number
This commit is contained in:
@ -119,9 +119,9 @@ function deleteCookie( name, path, domain ) {
|
||||
|
||||
function replyTo(imageId, commentId) {
|
||||
var box = $("#comment_on_"+imageId);
|
||||
var text = ">>"+imageId+"#"+commentId+": ";
|
||||
var text = ">>"+imageId+"#c"+commentId+": ";
|
||||
|
||||
box.focus();
|
||||
box.val(box.val() + text);
|
||||
$("[name="+commentId+"]").parent().effect("highlight", {}, 5000);
|
||||
$("#c"+commentId).effect("highlight", {}, 5000);
|
||||
}
|
||||
|
Reference in New Issue
Block a user