[ SYSTEM ]: Linux wordpress 6.1.0-41-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.158-1 (2025-11-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-admin
/
js
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 widgets
SET
[ DEL ]
📄 accordion.js
2,933 B
SET
[ EDIT ]
|
[ DEL ]
📄 auth-app.js
5,796 B
SET
[ EDIT ]
|
[ DEL ]
📄 code-editor.js
11,588 B
SET
[ EDIT ]
|
[ DEL ]
📄 color-picker.js
9,768 B
SET
[ EDIT ]
|
[ DEL ]
📄 common.min.js
23,676 B
SET
[ EDIT ]
|
[ DEL ]
📄 custom-header.js
2,023 B
SET
[ EDIT ]
|
[ DEL ]
📄 customize-controls.js
295,335 B
SET
[ EDIT ]
|
[ DEL ]
📄 customize-nav-menus.js
114,135 B
SET
[ EDIT ]
|
[ DEL ]
📄 customize-nav-menus.min.js
48,272 B
SET
[ EDIT ]
|
[ DEL ]
📄 customize-widgets.js
71,727 B
SET
[ EDIT ]
|
[ DEL ]
📄 dashboard.js
27,666 B
SET
[ EDIT ]
|
[ DEL ]
📄 editor-expand.min.js
13,451 B
SET
[ EDIT ]
|
[ DEL ]
📄 farbtastic.js
7,849 B
SET
[ EDIT ]
|
[ DEL ]
📄 gallery.js
5,543 B
SET
[ EDIT ]
|
[ DEL ]
📄 iris.min.js
23,643 B
SET
[ EDIT ]
|
[ DEL ]
📄 language-chooser.min.js
423 B
SET
[ EDIT ]
|
[ DEL ]
📄 link.js
3,987 B
SET
[ EDIT ]
|
[ DEL ]
📄 media-gallery.js
1,303 B
SET
[ EDIT ]
|
[ DEL ]
📄 media-upload.js
3,465 B
SET
[ EDIT ]
|
[ DEL ]
📄 media-upload.min.js
1,152 B
SET
[ EDIT ]
|
[ DEL ]
📄 media.min.js
2,439 B
SET
[ EDIT ]
|
[ DEL ]
📄 password-strength-meter.js
4,236 B
SET
[ EDIT ]
|
[ DEL ]
📄 password-toggle.min.js
847 B
SET
[ EDIT ]
|
[ DEL ]
📄 postbox.js
18,937 B
SET
[ EDIT ]
|
[ DEL ]
📄 privacy-tools.min.js
5,154 B
SET
[ EDIT ]
|
[ DEL ]
📄 set-post-thumbnail.js
876 B
SET
[ EDIT ]
|
[ DEL ]
📄 site-health.min.js
6,282 B
SET
[ EDIT ]
|
[ DEL ]
📄 site-icon.js
6,243 B
SET
[ EDIT ]
|
[ DEL ]
📄 svg-painter.js
3,280 B
SET
[ EDIT ]
|
[ DEL ]
📄 tags-box.js
11,140 B
SET
[ EDIT ]
|
[ DEL ]
📄 tags-box.min.js
3,077 B
SET
[ EDIT ]
|
[ DEL ]
📄 tags-suggest.js
5,771 B
SET
[ EDIT ]
|
[ DEL ]
📄 tags-suggest.min.js
2,269 B
SET
[ EDIT ]
|
[ DEL ]
📄 tags.js
6,098 B
SET
[ EDIT ]
|
[ DEL ]
📄 tags.min.js
2,467 B
SET
[ EDIT ]
|
[ DEL ]
📄 theme.min.js
27,142 B
SET
[ EDIT ]
|
[ DEL ]
📄 updates.js
111,999 B
SET
[ EDIT ]
|
[ DEL ]
📄 user-suggest.min.js
676 B
SET
[ EDIT ]
|
[ DEL ]
📄 widgets.min.js
12,609 B
SET
[ EDIT ]
|
[ DEL ]
📄 word-count.min.js
1,530 B
SET
[ EDIT ]
|
[ DEL ]
📄 xfn.min.js
458 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: custom-header.js
/** * @output wp-admin/js/custom-header.js */ /* global isRtl */ /** * Initializes the custom header selection page. * * @since 3.5.0 * * @deprecated 4.1.0 The page this is used on is never linked to from the UI. * Setting a custom header is completely handled by the Customizer. */ (function($) { var frame; $( function() { // Fetch available headers. var $headers = $('.available-headers'); // Apply jQuery.masonry once the images have loaded. $headers.imagesLoaded( function() { $headers.masonry({ itemSelector: '.default-header', isRTL: !! ( 'undefined' != typeof isRtl && isRtl ) }); }); /** * Opens the 'choose from library' frame and creates it if it doesn't exist. * * @since 3.5.0 * @deprecated 4.1.0 * * @return {void} */ $('#choose-from-library-link').on( 'click', function( event ) { var $el = $(this); event.preventDefault(); // If the media frame already exists, reopen it. if ( frame ) { frame.open(); return; } // Create the media frame. frame = wp.media.frames.customHeader = wp.media({ // Set the title of the modal. title: $el.data('choose'), // Tell the modal to show only images. library: { type: 'image' }, // Customize the submit button. button: { // Set the text of the button. text: $el.data('update'), // Tell the button not to close the modal, since we're // going to refresh the page when the image is selected. close: false } }); /** * Updates the window location to include the selected attachment. * * @since 3.5.0 * @deprecated 4.1.0 * * @return {void} */ frame.on( 'select', function() { // Grab the selected attachment. var attachment = frame.state().get('selection').first(), link = $el.data('updateLink'); // Tell the browser to navigate to the crop step. window.location = link + '&file=' + attachment.id; }); frame.open(); }); }); }(jQuery));