src/widgets/Controller.js
branchnew-model
changeset 917 eb8677d3a663
parent 904 510ebab76fa3
child 919 972099304059
equal deleted inserted replaced
916:ec6849bbbdcc 917:eb8677d3a663
   194         this.player.popcorn.pause();
   194         this.player.popcorn.pause();
   195     }  
   195     }  
   196 };
   196 };
   197 
   197 
   198 IriSP.Widgets.Controller.prototype.muteHandler = function() {
   198 IriSP.Widgets.Controller.prototype.muteHandler = function() {
   199     this.player.popcorn.mute(!this.player.popcorn.muted());
   199     this.player.popcorn.muted(!this.player.popcorn.muted());
   200 };
   200 };
   201 
   201 
   202 IriSP.Widgets.Controller.prototype.volumeUpdater = function() {
   202 IriSP.Widgets.Controller.prototype.volumeUpdater = function() {
   203     var _muted = this.player.popcorn.muted(),
   203     var _muted = this.player.popcorn.muted(),
   204         _vol = this.player.popcorn.volume();
   204         _vol = this.player.popcorn.volume();