Skip to content
Snippets Groups Projects
Commit e40d4e05 authored by Fredrik Jonsson's avatar Fredrik Jonsson
Browse files

Make sure js-hidden is added to field groups with multiple fields.

parent 0d043685
No related branches found
No related tags found
No related merge requests found
......@@ -7,9 +7,11 @@
var $field_group = $('.field-group-' + i);
if ($field_group.length) {
var classes = 'field-group-wrapper field-group-wrapper-' + i;
if ($field_group.data('hidden')) {
classes += ' js-hidden';
}
$field_group.each(function () { // eslint-disable-line no-loop-func
if ($(this).data('hidden') && classes.indexOf('js-hidden') === -1) {
classes += ' js-hidden';
}
});
$field_group.wrapAll('<div class="' + classes + '" />');
}
else {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment