Skip to content

Commit

Permalink
fix kplayer and silverlight player states
Browse files Browse the repository at this point in the history
  • Loading branch information
MichalRadwantzor committed Sep 22, 2014
1 parent 3b811b6 commit adbdf6e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/EmbedPlayer/resources/mw.EmbedPlayerKplayer.js
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ mw.EmbedPlayerKplayer = {
* parent_play
*/
onPlay: function() {
if(this._propagateEvents && this.paused) {
if(this._propagateEvents) {
$( this ).trigger( "playing" );
this.hideSpinner();
if ( this.isLive() ) {
Expand Down
2 changes: 1 addition & 1 deletion modules/EmbedPlayer/resources/mw.EmbedPlayerSilverlight.js
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,7 @@
if ( !this.durationReceived ) {
return;
}
if (this._propagateEvents && this.paused) {
if ( this._propagateEvents ) {

this.updatePlayhead();
$( this ).trigger( "playing" );
Expand Down

0 comments on commit adbdf6e

Please sign in to comment.