%PDF- %PDF-
Direktori : /var/www/html/qendrasteps/wp-content/themes/tm-heli/core/kirki/controls/js/src/ |
Current File : /var/www/html/qendrasteps/wp-content/themes/tm-heli/core/kirki/controls/js/src/fontawesome.js |
/* global fontAwesomeJSON */ wp.customize.controlConstructor['kirki-fontawesome'] = wp.customize.kirkiDynamicControl.extend({ initKirkiControl: function() { var control = this, element = this.container.find( 'select' ), icons = jQuery.parseJSON( fontAwesomeJSON ), selectValue, selectWooOptions = { data: [], escapeMarkup: function( markup ) { return markup; }, templateResult: function( val ) { return '<i class="fa fa-lg fa-' + val.id + '" aria-hidden="true"></i>' + ' ' + val.text; }, templateSelection: function( val ) { return '<i class="fa fa-lg fa-' + val.id + '" aria-hidden="true"></i>' + ' ' + val.text; } }, select; _.each( icons.icons, function( icon ) { selectWooOptions.data.push({ id: icon.id, text: icon.name }); }); select = jQuery( element ).selectWoo( selectWooOptions ); select.on( 'change', function() { selectValue = jQuery( this ).val(); control.setting.set( selectValue ); }); select.val( control.setting._value ).trigger( 'change' ); } });