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 | assets/js/select-user-to-edit.js +11 -2 3.9.6 → 4.0.3 View file →
@@ -1,6 +1,16 @@
1 1 jQuery(document).ready(function(){
2 2
3 + if ( jQuery('#select_user_to_edit_form').length > 0 )
4 + wppb_select_user_to_edit_initialize();
5 +
6 +})
7 +
8 +/**
9 + * Handle "Select User To Edit" Field (Edit Profile Form)
10 + *
11 + * */
12 +function wppb_select_user_to_edit_initialize() {
3 13 jQuery("select").filter(function() {
4 14 if ( this.id.startsWith( "wppb-" ) && this.id.endsWith( "user-to-edit" ) ) {
5 15 return this;
6 16 }
@@ -17,6 +27,5 @@
17 27 jQuery(".wppb-user-to-edit").data("select2").dropdown.$dropdownContainer.css( "z-index", "99999999" );
18 28 }
19 29 });
20 30 })
21 -
22 -})
31 +}