From cb2d88a0922eab970cdedfedcb702e7339c65c69 Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Wed, 23 Jul 2014 17:54:15 +0000 Subject: [PATCH] After [29179], remove the last instance of `this.isCompatibleSrc()`. Props kovshenin. See #28905. Built from https://develop.svn.wordpress.org/trunk@29277 git-svn-id: http://core.svn.wordpress.org/trunk@29059 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/js/mediaelement/wp-playlist.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/js/mediaelement/wp-playlist.js b/wp-includes/js/mediaelement/wp-playlist.js index 9c0fb2c589..7c9c23372c 100644 --- a/wp-includes/js/mediaelement/wp-playlist.js +++ b/wp-includes/js/mediaelement/wp-playlist.js @@ -144,7 +144,7 @@ if ( last !== current ) { this.setPlayer( true ); - } else if ( this.isCompatibleSrc() ) { + } else { this.playerNode.attr( 'src', this.current.get( 'src' ) ); this.playCurrentSrc(); }