PluginProbe
User Profile Builder – Beautiful User Registration Forms, User Profiles & User Role Editor / 3.16.4
User Profile Builder – Beautiful User Registration Forms, User Profiles & User Role Editor v3.16.4
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
profile-builder / assets / js / select-user-to-edit.js

select-user-to-edit.js in User Profile Builder – Beautiful User Registration Forms, User Profiles & User Role Editor 3.16.4, at assets/js/select-user-to-edit.js

31 lines 1012 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 jQuery(document).ready(function(){
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() {
13 jQuery("select").filter(function() {
14 if ( this.id.startsWith( "wppb-" ) && this.id.endsWith( "user-to-edit" ) ) {
15 return this;
16 }
17 }).on("change", function () {
18 window.location.href = jQuery(this).val();
19 });
20 jQuery(function(){
21 jQuery("select").filter(function() {
22 if ( this.id.startsWith( "wppb-" ) && this.id.endsWith( "user-to-edit" ) ) {
23 return this;
24 }
25 }).select2().on("select2:open", function(){
26 if( jQuery(".wppb-user-to-edit").parents( ".overlay-container" ).length ){
27 jQuery(".wppb-user-to-edit").data("select2").dropdown.$dropdownContainer.css( "z-index", "99999999" );
28 }
29 });
30 })
31 }