--- a/cms/app-client/app/components/player-component.js Fri Aug 05 18:51:59 2016 +0200
+++ b/cms/app-client/app/components/player-component.js Tue Aug 16 00:16:08 2016 +0200
@@ -2,9 +2,8 @@
export default Ember.Component.extend({
classNames: ['player-component'],
- classNameBindings: ['video:video', 'reduce:reduce'],
+ classNameBindings: ['video:video'],
videoBinding: 'player.model.video',
- reduceBinding: 'player.reduce',
player: Ember.inject.service(),
popcorn: null,
@@ -104,7 +103,7 @@
},
display: function(el) {
- this.get('player').display(el);
+ this.get('player').displayAdditionalInformation(el);
}
}