mirror of
https://github.com/redmine/redmine.git
synced 2026-01-22 15:33:22 +01:00
Merged r23547 from trunk to 6.0-stable (#42369).
git-svn-id: https://svn.redmine.org/redmine/branches/6.0-stable@23550 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -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();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user