[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
astra-addon
/
admin
/
assets
/
js
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 customizer-controls.js
1,086 B
SET
[ EDIT ]
|
[ DEL ]
📄 wp-color-picker-alpha.js
15,601 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: customizer-controls.js
/** * Astra Addon Customizer JS * * @package Astra Addon * @since 1.4.0 */ (function( $ ) { ASTExtAdmin = { init: function() { $(document).on( 'click', ".ast-customizer-internal-link", ASTExtAdmin.navigate_section ); $(document).on( 'change', "#customize-control-astra-settings-mobile-menu-style select, #customize-control-astra-settings-mobile-above-header-menu-style select, #customize-control-astra-settings-mobile-below-header-menu-style select", ASTExtAdmin.remove_no_toggle_style ); }, navigate_section: function() { $this = jQuery( this ); var sectionToNavigate = $this.data('ast-customizer-section') || ''; var section = wp.customize.section( sectionToNavigate ); section.expand(); }, remove_no_toggle_style: function() { var self = jQuery( this ); var noToggleStyle = self.find( 'option[value="no-toggle"]' ); if ( noToggleStyle.length && astAdminLacalizeVars.astra_no_toggle_menu_style_deprecate == false ) { noToggleStyle.remove(); } }, } $( document ).ready(function() { ASTExtAdmin.init(); }); })( jQuery );