| Server IP : 104.21.28.229 / Your IP : 216.73.216.142 Web Server : Apache/2 System : Linux hosting8537.lvs 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : mienphi ( 1014) PHP Version : 8.2.14 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/mienphi/public_html/wp-content/plugins/buddypress/bp-templates/bp-nouveau/js/ |
Upload File : |
/* global _ */
/* @since 3.0.0 */
/* @version 3.0.0 */
window.wp = window.wp || {};
( function( wp, $ ) {
if ( 'undefined' === typeof wp.customize ) {
return;
}
wp.customize.bind( 'ready', function() {
var groupFrontPage = wp.customize.control( 'group_front_page' ),
userFrontPage = wp.customize.control( 'user_front_page' );
// If the Main Group setting is disabled, hide all others.
if ( 'undefined' !== typeof groupFrontPage ) {
$( groupFrontPage.selector ).on( 'click', 'input[type=checkbox]', function( event ) {
var checked = $( event.currentTarget ).prop( 'checked' ), controller = $( event.delegateTarget ).prop( 'id' );
_.each( wp.customize.section( 'bp_nouveau_group_front_page' ).controls(), function( control ) {
if ( control.selector !== '#' + controller ) {
if ( true === checked ) {
$( control.selector ).show();
} else {
$( control.selector ).hide();
}
}
} );
} );
}
// If the Main User setting is disabled, hide all others.
if ( 'undefined' !== typeof userFrontPage ) {
$( userFrontPage.selector ).on( 'click', 'input[type=checkbox]', function( event ) {
var checked = $( event.currentTarget ).prop( 'checked' ), controller = $( event.delegateTarget ).prop( 'id' );
_.each( wp.customize.section( 'bp_nouveau_user_front_page' ).controls(), function( control ) {
if ( control.selector !== '#' + controller ) {
if ( true === checked ) {
$( control.selector ).show();
} else {
$( control.selector ).hide();
}
}
} );
} );
}
$( 'ul#customize-control-group_nav_order, ul#customize-control-user_nav_order' ).sortable( {
cursor : 'move',
axis : 'y',
opacity : 1,
items : 'li:not(.ui-sortable-disabled)',
tolerance : 'intersect',
update: function() {
var order = [];
$( this ).find( '[data-bp-nav]' ).each( function( s, slug ) {
order.push( $( slug ).data( 'bp-nav' ) );
} );
if ( order.length ) {
$( '#bp_item_' + $( this ).data( 'bp-type' ) ).val( order.join() ).trigger( 'change' );
}
}
} ).disableSelection();
} );
} )( window.wp, jQuery );