We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cac46e0 commit 8189449Copy full SHA for 8189449
app/code/Magento/Config/view/adminhtml/templates/system/config/edit.phtml
@@ -58,10 +58,16 @@ require([
58
59
var parentSection = groupElement.parents('.section-config');
60
parentSection.addClass('highlighted');
61
+ parentSection.addClass('active');
62
setTimeout(function() {
63
parentSection.removeClass('highlighted', 2000, "easeInBack");
64
}, 3000);
65
if (!parentSection.hasClass('active')) {
66
+ if(section == 'payment') {
67
+ var openSection = jQuery('.open').first().attr('id');
68
+ var splitIdArray = openSection.split('_');
69
+ section = section + '_' + splitIdArray[1];
70
+ }
71
Fieldset.toggleCollapse(section + '_' + group);
72
}
73
0 commit comments