PluginProbe
User Profile Builder – Beautiful User Registration Forms, User Profiles & User Role Editor / 4.0.3
User Profile Builder – Beautiful User Registration Forms, User Profiles & User Role Editor v4.0.3
4.0.3 4.0.2 4.0.1 4.0.0 3.16.6 3.16.5 3.16.4 3.16.3 3.16.2 3.16.1 3.16.0 3.15.9 3.9.9 3.9.5 3.9.6 3.9.7 3.9.8 1.1.7 1.1.8 1.1.9 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 All 341 releases
← All changes | front-end/default-fields/select2/select2.js +3 -1 3.16.5 → 4.0.3 View file →
@@ -16,9 +16,11 @@
16 16 }
17 17
18 18 select2Arguments = wp.hooks.applyFilters( 'wppb_select2_initialize_arguments', select2Arguments, selectElement );
19 19
20 - if ( !( 'placeholder' in select2Arguments ) || select2Arguments.placeholder === '' ) {
20 + // On a multiple select the placeholder lands in the inline search box, which is only as
21 + // wide as the free space left by the selected options, so the field title gets truncated.
22 + if ( !selectElement.prop( 'multiple' ) && ( !( 'placeholder' in select2Arguments ) || select2Arguments.placeholder === '' ) ) {
21 23 select2Arguments.placeholder = jQuery('label[for="' + selectElement.attr('id') + '"]').text();
22 24 }
23 25
24 26 selectElement.select2( select2Arguments ).on('select2:open', function(){