1
0
mirror of https://github.com/meineerde/redmine.git synced 2026-01-31 11:37:14 +00:00

Use toggleExpendCollapseIcon function in Collapse all/Expand all (#42369).

git-svn-id: https://svn.redmine.org/redmine/trunk@23606 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Marius Balteanu 2025-04-07 20:09:17 +00:00
parent ec41a38e6e
commit 95ddae6e2c

View File

@ -66,8 +66,9 @@ function collapseAllRowGroups(el) {
tbody.children('tr').each(function(index) {
if ($(this).hasClass('group')) {
$(this).removeClass('open');
$(this).find('.expander').switchClass('icon-expanded', 'icon-collapsed');
updateSVGIcon($(this).find('.expander')[0], 'angle-right')
var expander = $(this).find('.expander');
expander.switchClass('icon-expanded', 'icon-collapsed');
toggleExpendCollapseIcon(expander[0]);
} else {
$(this).hide();
}
@ -79,8 +80,9 @@ function expandAllRowGroups(el) {
tbody.children('tr').each(function(index) {
if ($(this).hasClass('group')) {
$(this).addClass('open');
$(this).find('.expander').switchClass('icon-collapsed', 'icon-expanded');
updateSVGIcon($(this).find('.expander')[0], 'angle-down')
var expander = $(this).find('.expander');
expander.switchClass('icon-collapsed', 'icon-expanded');
toggleExpendCollapseIcon(expander[0]);
} else {
$(this).show();
}