Ghost Exploiter Team Official
/
home2
/
warripp1
/
public_html
/
siulum
/
bluehost
/
wp-admin
/
js
/
Nama File / Folder
Size
Action
widgets
--
NONE
code-editor.min.js
3.095KB
Hapus
Edit
Rename
color-picker.min.js
3.438KB
Hapus
Edit
Rename
common.js
41.762KB
Hapus
Edit
Rename
custom-background.js
3.267KB
Hapus
Edit
Rename
custom-header.js
1.972KB
Hapus
Edit
Rename
customize-widgets.min.js
27.678KB
Hapus
Edit
Rename
edit-comments.min.js
14.878KB
Hapus
Edit
Rename
gallery.min.js
3.752KB
Hapus
Edit
Rename
inline-edit-tax.min.js
2.821KB
Hapus
Edit
Rename
link.js
3.784KB
Hapus
Edit
Rename
media-gallery.min.js
0.524KB
Hapus
Edit
Rename
media-upload.js
3.382KB
Hapus
Edit
Rename
media.min.js
1.823KB
Hapus
Edit
Rename
nav-menu.js
41.486KB
Hapus
Edit
Rename
plugin-install.js
6.853KB
Hapus
Edit
Rename
set-post-thumbnail.js
0.821KB
Hapus
Edit
Rename
set-post-thumbnail.min.js
0.521KB
Hapus
Edit
Rename
site-health.min.js
4.625KB
Hapus
Edit
Rename
svg-painter.min.js
2.354KB
Hapus
Edit
Rename
tags-box.js
10.781KB
Hapus
Edit
Rename
tags-box.min.js
2.996KB
Hapus
Edit
Rename
tags-suggest.js
5.313KB
Hapus
Edit
Rename
tags-suggest.min.js
2.221KB
Hapus
Edit
Rename
tags.js
4.244KB
Hapus
Edit
Rename
tags.min.js
1.671KB
Hapus
Edit
Rename
user-profile.min.js
6.173KB
Hapus
Edit
Rename
user-suggest.min.js
0.663KB
Hapus
Edit
Rename
wp-fullscreen-stub.js
0.662KB
Hapus
Edit
Rename
xfn.min.js
3.422KB
Hapus
Edit
Rename
<=Back
/** * @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 * * @returns {void} */ $('#choose-from-library-link').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 * * @returns {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));
Liking