Make WordPress Core

Ticket #24289: 24289.diff

File 24289.diff, 958 bytes (added by adamsilverstein, 12 years ago)

insert only image URL when dragging/dropping or using modal to upload image

  • wp-admin/js/post-formats.js

     
    3232        }
    3333
    3434        function imageFormatUploadSuccess( attachment ) {
    35                 var $holder, $field, html = wp.media.string.image({
    36                         size : 'full',
    37                         align : false,
    38                         link : getUserSetting( 'urlbutton' )
    39                 }, attachment.attributes );
     35                var $holder, $field, html = attachment.attributes.url;
    4036
    4137                $holder = $('.wp-format-media-holder[data-format=image]');
    4238                $( '.media-progress-bar', $holder ).remove();
     
    310306                                        // show one preview at a time
    311307                                        mediaPreview( attachment );
    312308                                } else {
    313                                         html = wp.media.string.image({
    314                                                 size: 'full',
    315                                                 align : false,
    316                                                 link : getUserSetting( 'urlbutton' )
    317                                         }, attachment);
     309                                        html = attachment.url;
    318310
    319311                                        // set the hidden input's value
    320312                                        $field.val( html );