Skip to content

Commit 00ae0f2

Browse files
shaehnVladimir Kotal
authored andcommitted
Folding Icon selection fix #1764 (#1779)
fixes #1764
1 parent a2fd8ff commit 00ae0f2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

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

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

521521
if (foldingEnabled && scopesEnabled) {
522522
if (iconId != null) {
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='");
523+
out.write("<a style='cursor:pointer;' onclick='fold(this.parentNode.id)' id='");
525524
out.write(iconId);
526525
/* space inside span for IE support */
527526
out.write("'><span class='fold-icon'>&nbsp;</span></a>");

0 commit comments

Comments
 (0)