home *** CD-ROM | disk | FTP | other *** search
/ HTML Examples / WP.iso / wordpress / wp-admin / js / media-gallery.js < prev    next >
Encoding:
JavaScript  |  2016-08-20  |  1.2 KB  |  40 lines

  1. /* global ajaxurl */
  2.  
  3. /**
  4.  * This file is used on media-upload.php which has been replaced by media-new.php and upload.php
  5.  * Deprecated since 3.5.0
  6.  */
  7. jQuery(function($) {
  8.     /**
  9.      * Adds a click event handler to the element with a 'wp-gallery' class.
  10.      */
  11.     $( 'body' ).bind( 'click.wp-gallery', function(e) {
  12.         var target = $( e.target ), id, img_size;
  13.  
  14.         if ( target.hasClass( 'wp-set-header' ) ) {
  15.             // Opens the image to preview it full size.
  16.             ( window.dialogArguments || opener || parent || top ).location.href = target.data( 'location' );
  17.             e.preventDefault();
  18.         } else if ( target.hasClass( 'wp-set-background' ) ) {
  19.             // Sets the image as background of the theme.
  20.             id = target.data( 'attachment-id' );
  21.             img_size = $( 'input[name="attachments[' + id + '][image-size]"]:checked').val();
  22.  
  23.             /**
  24.              * This AJAX action has been deprecated since 3.5.0, see custom-background.php
  25.              */
  26.             jQuery.post(ajaxurl, {
  27.                 action: 'set-background-image',
  28.                 attachment_id: id,
  29.                 size: img_size
  30.             }, function() {
  31.                 var win = window.dialogArguments || opener || parent || top;
  32.                 win.tb_remove();
  33.                 win.location.reload();
  34.             });
  35.  
  36.             e.preventDefault();
  37.         }
  38.     });
  39. });
  40.