changeset 461 | 9b7a6c099870 |
parent 460 | 686926d132ff |
child 463 | 5c43f17f87b5 |
--- a/cms/app-client/app/components/transcript-component.js Fri Dec 02 17:22:16 2016 +0100 +++ b/cms/app-client/app/components/transcript-component.js Sat Dec 03 00:09:28 2016 +0100 @@ -108,8 +108,10 @@ actions: { play: function (progress) { - this.get('player').trigger('progressupdate', progress); - this.get('player').set('playing', true); + if(!!progress || progress === 0) { + this.get('player').trigger('progressupdate', progress); + this.get('player').set('playing', true); + } } }