Make WordPress Core

Ticket #29476: 29476.diff

File 29476.diff, 1.0 KB (added by johnbillion, 10 years ago)
  • src/wp-includes/css/media-views.css

     
    19181918        clear: both;
    19191919}
    19201920
     1921.media-embed .setting.title {
     1922        display: none;
     1923}
     1924
    19211925.image-details .embed-media-settings .setting {
    19221926        float: none;
    19231927        width: auto;
  • src/wp-includes/js/media-views.js

     
    68636863                                        post_ID: media.view.settings.post.id,
    68646864                                        shortcode: '[embed]' + this.model.get('url') + '[/embed]'
    68656865                                }
    6866                         } ).done( _.bind( this.renderoEmbed, this ) );
     6866                        } )
     6867                        .done( _.bind( this.renderoEmbed, this ) )
     6868                        .fail( _.bind( this.failedoEmbed, this ) );
     6869                },
     6870
     6871                failedoEmbed: function(response) {
     6872                        this.$('.setting.title').show();
    68676873                },
    68686874
    68696875                renderoEmbed: function(html) {