| Server IP : 195.130.67.5 / Your IP : 216.73.217.154 Web Server : Microsoft-IIS/10.0 System : Windows NT WEBSERVER1 10.0 build 17763 (Windows Server 2016) i586 User : IUSR ( 0) PHP Version : 7.4.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /inetpub/wwwroot/cdc/wp-content/plugins/members/js/ |
Upload File : |
jQuery( document ).ready( function( $ ) {
$( '#members-import-toggle' ).on( 'click', function( e ) {
e.preventDefault();
var panel = $( '#members-import-roles' );
panel.slideToggle( 300, function() {
if ( panel.is( ':visible' ) ) {
$( 'html, body' ).animate( { scrollTop: panel.offset().top - 40 }, 200 );
}
} );
} );
$( document ).on( 'change', '.members-import-action-select', function() {
var renameField = $( this ).closest( 'td' ).find( '.members-rename-field' );
if ( $( this ).val() === 'rename' ) {
renameField.slideDown();
} else {
renameField.slideUp();
}
} );
$( '#members-apply-bulk-conflict' ).on( 'click', function() {
var val = $( '#members-bulk-conflict-action' ).val();
if ( val ) {
$( '.members-import-action-select' ).each( function() {
$( this ).val( val ).trigger( 'change' );
} );
}
} );
$( document ).on( 'click', '.members-toggle-caps', function( e ) {
e.preventDefault();
var isExpanded = $( this ).attr( 'aria-expanded' ) === 'true';
$( this ).closest( 'td' ).find( '.members-caps-detail' ).slideToggle();
$( this ).attr( 'aria-expanded', String( ! isExpanded ) );
} );
} );