equal
deleted
inserted
replaced
114 //IriSP.PopcornReplacement.trigger("playing"); |
114 //IriSP.PopcornReplacement.trigger("playing"); |
115 this.playerFns.play(); |
115 this.playerFns.play(); |
116 }; |
116 }; |
117 |
117 |
118 IriSP.PopcornReplacement.player.prototype.pause = function() { |
118 IriSP.PopcornReplacement.player.prototype.pause = function() { |
119 if ( !this.media.paused ) { |
119 // if ( !this.media.paused ) { |
120 this.media.paused = true; |
120 this.media.paused = true; |
121 this.trigger( "pause" ); |
121 this.trigger( "pause" ); |
122 this.playerFns.pause(); |
122 this.playerFns.pause(); |
123 } |
123 // } |
124 }; |
124 }; |
125 |
125 |
126 IriSP.PopcornReplacement.player.prototype.muted = function(val) { |
126 IriSP.PopcornReplacement.player.prototype.muted = function(val) { |
127 if (typeof(val) !== "undefined") { |
127 if (typeof(val) !== "undefined") { |
128 |
128 |