(function($) {
'use strict';
$(function() {
// Check if ACF Flexible Content fields exists at all
if ($('.acf-fc-layout-handle').length) {
// Collapse ACF Flexible Content fields at first
$('.acf-fc-layout-handle').trigger('click');
// Add expand icons for panels
$('.acf-fc-layout-handle').prepend(' 0) {
group.append('');
}
});
});
// Open/Close panels
$('.acf-fc-layout-handle').on('click', function() {
$(this).toggleClass('open');
});
}
});
}(jQuery));