We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b125a6 commit 0961984Copy full SHA for 0961984
src/org/opensolaris/opengrok/analysis/JFlexXref.java
@@ -520,7 +520,8 @@ protected void startNewLine() throws IOException {
520
521
if (foldingEnabled && scopesEnabled) {
522
if (iconId != null) {
523
- out.write("<a style='cursor:pointer;' onclick='fold(this.parentNode.id)' id='");
+ // 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='");
525
out.write(iconId);
526
/* space inside span for IE support */
527
out.write("'><span class='fold-icon'> </span></a>");
0 commit comments