diff -r 686926d132ff -r 9b7a6c099870 cms/app-client/app/components/transcript-component.js --- 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); + } } }