Make WordPress Core

Ticket #32035: 32035.diff

File 32035.diff, 2.8 KB (added by wonderboymusic, 9 years ago)
  • src/wp-includes/js/media/views/embed/link.js

     
    4545                        return;
    4646                }
    4747
     48                if ( this.dfd && 'pending' === this.dfd.state() ) {
     49                        this.dfd.abort();
     50                }
     51
    4852                embed = new wp.shortcode({
    4953                        tag: 'embed',
    5054                        attrs: _.pick( this.model.attributes, [ 'width', 'height', 'src' ] ),
     
    5155                        content: this.model.get('url')
    5256                });
    5357
    54                 wp.ajax.send( 'parse-embed', {
    55                         data : {
     58                this.dfd = $.ajax({
     59                        type:    'POST',
     60                        url:     wp.ajax.settings.url,
     61                        context: this,
     62                        data:    {
     63                                action: 'parse-embed',
    5664                                post_ID: wp.media.view.settings.post.id,
    5765                                shortcode: embed.string()
    5866                        }
    59                 } )
    60                         .done( _.bind( this.renderoEmbed, this ) )
    61                         .fail( _.bind( this.renderFail, this ) );
     67                })
     68                        .done( this.renderoEmbed )
     69                        .fail( this.renderFail );
    6270        },
    6371
    64         renderFail: function () {
     72        renderFail: function ( response, status ) {
     73                if ( 'abort' === status ) {
     74                        return;
     75                }
    6576                this.$( '.link-text' ).show();
    6677        },
    6778
    6879        renderoEmbed: function( response ) {
    69                 var html = ( response && response.body ) || '';
     80                var html = ( response && response.data && response.data.body ) || '';
    7081
    7182                if ( html ) {
    7283                        this.$('.embed-container').show().find('.embed-preview').html( html );
  • src/wp-includes/js/media-views.js

     
    45614561                        return;
    45624562                }
    45634563
     4564                if ( this.dfd && 'pending' === this.dfd.state() ) {
     4565                        this.dfd.abort();
     4566                }
     4567
    45644568                embed = new wp.shortcode({
    45654569                        tag: 'embed',
    45664570                        attrs: _.pick( this.model.attributes, [ 'width', 'height', 'src' ] ),
     
    45674571                        content: this.model.get('url')
    45684572                });
    45694573
    4570                 wp.ajax.send( 'parse-embed', {
    4571                         data : {
     4574                this.dfd = $.ajax({
     4575                        type:    'POST',
     4576                        url:     wp.ajax.settings.url,
     4577                        context: this,
     4578                        data:    {
     4579                                action: 'parse-embed',
    45724580                                post_ID: wp.media.view.settings.post.id,
    45734581                                shortcode: embed.string()
    45744582                        }
    4575                 } )
    4576                         .done( _.bind( this.renderoEmbed, this ) )
    4577                         .fail( _.bind( this.renderFail, this ) );
     4583                })
     4584                        .done( this.renderoEmbed )
     4585                        .fail( this.renderFail );
    45784586        },
    45794587
    4580         renderFail: function () {
     4588        renderFail: function ( response, status ) {
     4589                if ( 'abort' === status ) {
     4590                        return;
     4591                }
    45814592                this.$( '.link-text' ).show();
    45824593        },
    45834594
    45844595        renderoEmbed: function( response ) {
    4585                 var html = ( response && response.body ) || '';
     4596                var html = ( response && response.data && response.data.body ) || '';
    45864597
    45874598                if ( html ) {
    45884599                        this.$('.embed-container').show().find('.embed-preview').html( html );