Reply to a comment does not work in IE and Firefox.
JavaScript? Errorlog:
Error: missing ) after argument list
Sourcefile: javascript:addComment(u'25', u'16', 89)
Row: 1, Column: 12
SourceCode:
addComment(u'25', u'16', 89)
If I apply javascript:addComment(25, 16, 89) to the address bar of my browser the
"Reply To Comment on Line 25" - Dialog appears.
So I suppose the change in Line 200 (Rev. 2577) caused this error.
Rev. 717 (Line 201)
html += "<a href=\"javascript:addComment(" + LineNum + ", " + IDFile + ", " + comment.IDComment + ")\">Reply</a></td></tr>"
Rev. 2577 (Line 200)
html += "<a href=\"javascript:addComment(" + `LineNum` + ", " + `IDFile` + ", " + `comment.IDComment` + ")\">Reply</a></td></tr>"