Don't set the poster image for videos in a playlist if the image is the video mime-type icon blown up.

See #27892.



git-svn-id: https://develop.svn.wordpress.org/trunk@28158 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Scott Taylor 2014-04-18 17:38:53 +00:00
parent 18f073cde0
commit 6ccd360ff4
1 changed files with 2 additions and 2 deletions

View File

@ -69,9 +69,9 @@
},
renderCurrent : function () {
var dimensions;
var dimensions, defaultImage = 'wp-includes/images/media/video.png';
if ( 'video' === this.data.type ) {
if ( this.data.images && this.current.get( 'image' ) ) {
if ( this.data.images && this.current.get( 'image' ) && -1 === this.current.get( 'image' ).src.indexOf( defaultImage ) ) {
this.playerNode.attr( 'poster', this.current.get( 'image' ).src );
}
dimensions = this.current.get( 'dimensions' ).resized;