diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2020-07-27 10:05:23 +0200 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2020-07-27 10:05:23 +0200 |
| commit | 5bf66662a9bdd62c5bccab15e607cd95cfb8fcab (patch) | |
| tree | 39a1a4629749056191c05dfd899f931701b7acf3 /srcs/wordpress/wp-admin/js/custom-header.js | |
| parent | 5afd237bbd22028b85532b8c0b3fcead49a00764 (diff) | |
| download | ft_server-5bf66662a9bdd62c5bccab15e607cd95cfb8fcab.tar.gz ft_server-5bf66662a9bdd62c5bccab15e607cd95cfb8fcab.tar.bz2 ft_server-5bf66662a9bdd62c5bccab15e607cd95cfb8fcab.zip | |
Removed wordpress and phpmyadmin, my server doesn't handle it well and it brings shame on my famillyHEADmaster
Diffstat (limited to 'srcs/wordpress/wp-admin/js/custom-header.js')
| -rw-r--r-- | srcs/wordpress/wp-admin/js/custom-header.js | 88 |
1 files changed, 0 insertions, 88 deletions
diff --git a/srcs/wordpress/wp-admin/js/custom-header.js b/srcs/wordpress/wp-admin/js/custom-header.js deleted file mode 100644 index e00c70c..0000000 --- a/srcs/wordpress/wp-admin/js/custom-header.js +++ /dev/null @@ -1,88 +0,0 @@ -/** - * @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)); |
