Skip to content

Commit 0961984

Browse files
committed
Undid fix for different issue
1 parent 4b125a6 commit 0961984

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/org/opensolaris/opengrok/analysis/JFlexXref.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -520,7 +520,8 @@ protected void startNewLine() throws IOException {
520520

521521
if (foldingEnabled && scopesEnabled) {
522522
if (iconId != null) {
523-
out.write("<a style='cursor:pointer;' onclick='fold(this.parentNode.id)' id='");
523+
// Fix for #1764 remove line below and add this -> out.write("<a style='cursor:pointer;' onclick='fold(this.parentNode.id)' id='");
524+
out.write("<a href='#' onclick='fold(this.parentNode.id)' id='");
524525
out.write(iconId);
525526
/* space inside span for IE support */
526527
out.write("'><span class='fold-icon'>&nbsp;</span></a>");

0 commit comments

Comments
 (0)