diff options
author | daan <daanl@outlook.com> | 2019-07-08 17:15:34 -0700 |
---|---|---|
committer | daan <daanl@outlook.com> | 2019-07-08 17:15:34 -0700 |
commit | 5f607e0f58fbbd22e2f60443da81662e936354f4 (patch) | |
tree | 611f373bc768a16406d42c3cf8852441e3fe9074 /docs/dynsections.js | |
parent | d656f3e3391ce94f0eace3592e0583ccaceb9ab7 (diff) |
update documentation
Diffstat (limited to 'docs/dynsections.js')
-rw-r--r-- | docs/dynsections.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/dynsections.js b/docs/dynsections.js index c1ce122..ea0a7b3 100644 --- a/docs/dynsections.js +++ b/docs/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(); |