prefix comment ID with c, so it isn't just a random number

This commit is contained in:
Shish
2012-02-22 13:07:04 +00:00
parent aaceb99aa5
commit f8fec8a036
3 changed files with 4 additions and 4 deletions

View File

@ -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);
}