| Current Path : /home/ereika83/www/wp-content/plugins/bb-theme-builder/extensions/acf/js/ |
| Current File : /home/ereika83/www/wp-content/plugins/bb-theme-builder/extensions/acf/js/detected-fields.js |
(function($) {
$(document).on( '_initSettingsFormsComplete', function() {
if ( FLBuilderConfig.select2Enabled ) {
var dropdown = $( '#fl-field-name_custom select' );
dropdown.select2({width:'100%'})
.on('select2:open', function(e){
$('#fl-field-name_custom select').attr('placeholder', FLBuilderStrings.placeholderSelect2);
})
}
$('#fl-field-name_custom select').change(function(){
str = $( this ).val();
if ( '' !== str ) {
text = this.options[this.selectedIndex].text;
type = text.match( /\[(.*)\]$/ );
$('#fl-field-name input[name=name]').val(str)
$('select[name=type]').val(type[1].replaceAll(' ', '_')).trigger('change');
}
});
acffix = $('.fl-builder-settings[data-form-id$=-acf] select[name=type]').val();
if ( 'text' === acffix ) {
setTimeout( function() {
$('#fl-field-image_size').toggle();
}, 20 );
}
/**
* Fix ACF Checkbox Separator toggle not working properly.
*/
function toggleCheckboxSeparator() {
var cbSeparatorField = $( '#fl-field-checkbox_separator'),
fieldType = $( '#fl-field-type select[name="type"]' ).val(),
cbFormat = $( '#fl-field-checkbox_format select[name="checkbox_format"]' ).val();
if ( 'checkbox' === fieldType && 'text' === cbFormat ) {
cbSeparatorField.show();
} else {
cbSeparatorField.hide();
}
}
$( '#fl-field-type select[name="type"]' ).on( 'change', toggleCheckboxSeparator );
$( '#fl-field-checkbox_format select[name="checkbox_format"]' ).on( 'change', toggleCheckboxSeparator );
});
})(jQuery);