diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2018-06-04 20:13:06 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-04 20:13:06 (GMT) |
commit | 2899a2d6eefed0cef26647e1c89cf08e02b800d5 (patch) | |
tree | 7839968b05e2af27e6aca2f1577c23816607ee3f /templates/html/dynsections.js | |
parent | 9117548f0ce573b586928a740966844776c4c6ba (diff) | |
parent | 293e5c9ba4b88924e0cc4b513318cf822f5c63eb (diff) | |
download | Doxygen-2899a2d6eefed0cef26647e1c89cf08e02b800d5.zip Doxygen-2899a2d6eefed0cef26647e1c89cf08e02b800d5.tar.gz Doxygen-2899a2d6eefed0cef26647e1c89cf08e02b800d5.tar.bz2 |
Merge pull request #755 from albert-github/feature/bug_796494
Bug 796494 - Collapsed treeview arrow displays as emoji in Microsoft Edge
Diffstat (limited to 'templates/html/dynsections.js')
-rw-r--r-- | templates/html/dynsections.js | 6 |
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('▶'); + a.html('►'); $(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('▶'); + currentRowSpans.filter(".arrow").html('►'); 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('▶'); + childRowsSpans.filter(".arrow").html('►'); childRows.show(); //show all children } updateStripes(); |