File: /var/www/vhosts/uyarreklam.com.tr/httpdocs/select-field.js.tar
uyarreklam.com.tr/httpdocs/wp-content/plugins/so-widgets-bundle/base/inc/fields/js/select-field.js 0000644 00000001437 15155600352 0032221 0 ustar 00 var/www/vhosts /* global jQuery */
( function( $ ) {
$( document ).on( 'sowsetupformfield', '.siteorigin-widget-field-type-select', function( e ) {
var $$ = $( this );
if ( $$.data( 'initialized' ) ) {
return;
}
if ( typeof $.fn.select2 == 'function' ) {
$$.find( '.sow-select2' ).select2();
// Prevent gap between dropdown items.
let listMargin;
$$.find( '.sow-select2' ).on( 'select2:open', function() {
setTimeout( function() {
var $dropdown = $( '.select2-results__option' );
listMargin = $dropdown.css('margin');
$dropdown.css('margin', '0');
}, 1 );
} );
$$.find( '.sow-select2' ).on( 'select2:close', function() {
$( '.select2-results__option' ).css( 'margin', listMargin );
} );
}
$$.data( 'initialized', true );
} );
} )( jQuery );