Skip to content

Commit 6d31f78

Browse files
We no longer need to use the markdown to link to a user during reply since that happens on the server now.
1 parent 091ef9c commit 6d31f78

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

views/includes/scripts/commentReplyScript.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
value += '\n\n';
4141
}
4242
value += '[Re](' + document.location.href.replace(/\(/g, '%28').replace(/\)/g, '%29') + '): ';
43-
value += '[@' + $author.text() + '](' + $author.attr('href') + '): ';
43+
value += '@' + $author.text() + ': ';
4444
value += ' \n';
4545
$replyTextarea.val(value);
4646
$replyTextarea.focus();

0 commit comments

Comments
 (0)