summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--app/assets/javascripts/application.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/assets/javascripts/application.js b/app/assets/javascripts/application.js
index 833afceb9..89c1aaa80 100644
--- a/app/assets/javascripts/application.js
+++ b/app/assets/javascripts/application.js
@@ -67,6 +67,7 @@ function collapseAllRowGroups(el) {
if ($(this).hasClass('group')) {
$(this).removeClass('open');
$(this).find('.expander').switchClass('icon-expanded', 'icon-collapsed');
+ updateSVGIcon($(this).find('.expander')[0], 'angle-right')
} else {
$(this).hide();
}
@@ -79,6 +80,7 @@ function expandAllRowGroups(el) {
if ($(this).hasClass('group')) {
$(this).addClass('open');
$(this).find('.expander').switchClass('icon-collapsed', 'icon-expanded');
+ updateSVGIcon($(this).find('.expander')[0], 'angle-down')
} else {
$(this).show();
}