File "admin-options-admincolumns.js"

Full Path: /www/wwwroot/shphe-en.com/wp-content/plugins/admin-columns-pro/classes/inline-edit/assets/js/admin-options-admincolumns.js
File size: 420 bytes
MIME-type: --
Charset: utf-8

/*
 * Refresh column events when ACF-field-type or Custom-Field-field-type is changed.
 *
 */
jQuery( document ).bind('column_init column_change column_add', function( e, column ){
	if ( 'column-acf_field' === jQuery( column ).find( '.column_type select' ).val() ) {
		jQuery( column ).find( '.column_field select, .column-sub_field select' ).change( function() {
			jQuery( column ).cpac_column_refresh();
		} );
	}
});