Make WordPress Core

Ticket #37717: media-gallery.patch

File media-gallery.patch, 1.4 KB (added by jipmoors, 8 years ago)

Documented JavaScript.

  • src/wp-admin/js/media-gallery.js

    diff --git src/wp-admin/js/media-gallery.js src/wp-admin/js/media-gallery.js
    index 52da393..a71d8fe 100644
     
    11/* global ajaxurl */
    2 jQuery(function($){
    3         $( 'body' ).bind( 'click.wp-gallery', function(e){
     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 */
     7jQuery(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) {
    412                var target = $( e.target ), id, img_size;
    513
    614                if ( target.hasClass( 'wp-set-header' ) ) {
     15                        // Opens the image to preview it full size.
    716                        ( window.dialogArguments || opener || parent || top ).location.href = target.data( 'location' );
    817                        e.preventDefault();
    918                } else if ( target.hasClass( 'wp-set-background' ) ) {
     19                        // Sets the image as background of the theme.
    1020                        id = target.data( 'attachment-id' );
    1121                        img_size = $( 'input[name="attachments[' + id + '][image-size]"]:checked').val();
    1222
     23                        /**
     24                         * This AJAX action has been deprecated since 3.5.0, see custom-background.php
     25                         */
    1326                        jQuery.post(ajaxurl, {
    1427                                action: 'set-background-image',
    1528                                attachment_id: id,
    1629                                size: img_size
    17                         }, function(){
     30                        }, function() {
    1831                                var win = window.dialogArguments || opener || parent || top;
    1932                                win.tb_remove();
    2033                                win.location.reload();