cms/app-client/app/components/transcript-component.js
changeset 461 9b7a6c099870
parent 460 686926d132ff
child 463 5c43f17f87b5
equal deleted inserted replaced
460:686926d132ff 461:9b7a6c099870
   106 
   106 
   107 
   107 
   108   actions: {
   108   actions: {
   109 
   109 
   110     play: function (progress) {
   110     play: function (progress) {
   111       this.get('player').trigger('progressupdate', progress);
   111       if(!!progress || progress === 0) {
   112       this.get('player').set('playing', true);
   112         this.get('player').trigger('progressupdate', progress);
       
   113         this.get('player').set('playing', true);
       
   114       }
   113     }
   115     }
   114   }
   116   }
   115 
   117 
   116 });
   118 });