summaryrefslogtreecommitdiff
path: root/docs/dynsections.js
diff options
context:
space:
mode:
authordaan <daanl@outlook.com>2019-07-08 17:15:34 -0700
committerdaan <daanl@outlook.com>2019-07-08 17:15:34 -0700
commit5f607e0f58fbbd22e2f60443da81662e936354f4 (patch)
tree611f373bc768a16406d42c3cf8852441e3fe9074 /docs/dynsections.js
parentd656f3e3391ce94f0eace3592e0583ccaceb9ab7 (diff)
update documentation
Diffstat (limited to 'docs/dynsections.js')
-rw-r--r--docs/dynsections.js6
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('&#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();