summaryrefslogtreecommitdiffstats
path: root/templates/html/dynsections.js
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2018-06-10 08:48:31 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2018-06-10 08:48:31 (GMT)
commit1afd71e2494442014187c2b6088f4ba7dbd5a1e7 (patch)
treef4749f318c03b431479c84250b346c188949af0c /templates/html/dynsections.js
parent813aedc55bebddb75e8e587aeff7068e1c7669a6 (diff)
parent2899a2d6eefed0cef26647e1c89cf08e02b800d5 (diff)
downloadDoxygen-1afd71e2494442014187c2b6088f4ba7dbd5a1e7.zip
Doxygen-1afd71e2494442014187c2b6088f4ba7dbd5a1e7.tar.gz
Doxygen-1afd71e2494442014187c2b6088f4ba7dbd5a1e7.tar.bz2
Merge branch 'master' of github.com:doxygen/doxygen
Diffstat (limited to 'templates/html/dynsections.js')
-rw-r--r--templates/html/dynsections.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/templates/html/dynsections.js b/templates/html/dynsections.js
index c1ce122..ea0a7b3 100644
--- a/templates/html/dynsections.js
+++ b/templates/html/dynsections.js
@@ -60,7 +60,7 @@ function toggleLevel(level)
$(this).show();
} else if (l==level+1) {
i.removeClass('iconfclosed iconfopen').addClass('iconfclosed');
- a.html('&#9654;');
+ a.html('&#9658;');
$(this).show();
} else {
$(this).hide();
@@ -87,7 +87,7 @@ function toggleFolder(id)
// replace down arrow by right arrow for current row
var currentRowSpans = currentRow.find("span");
currentRowSpans.filter(".iconfopen").removeClass("iconfopen").addClass("iconfclosed");
- currentRowSpans.filter(".arrow").html('&#9654;');
+ currentRowSpans.filter(".arrow").html('&#9658;');
rows.filter("[id^=row_"+id+"]").hide(); // hide all children
} else { // we are SHOWING
// replace right arrow by down arrow for current row
@@ -97,7 +97,7 @@ function toggleFolder(id)
// replace down arrows by right arrows for child rows
var childRowsSpans = childRows.find("span");
childRowsSpans.filter(".iconfopen").removeClass("iconfopen").addClass("iconfclosed");
- childRowsSpans.filter(".arrow").html('&#9654;');
+ childRowsSpans.filter(".arrow").html('&#9658;');
childRows.show(); //show all children
}
updateStripes();