--- a/cms/app-client/app/components/toolbar-component.js Thu Nov 10 15:35:27 2016 +0100
+++ b/cms/app-client/app/components/toolbar-component.js Sat Nov 12 17:21:25 2016 +0100
@@ -2,17 +2,16 @@
export default Ember.Component.extend({
- player: Ember.inject.service(),
+ player: Ember.inject.service(),
- classNames: ['toolbar-component'],
+ classNames: ['toolbar-component'],
- actions: {
+ actions: {
- display: function(el) {
- console.log('toolbar display func');
- this.get('player').displayAdditionalInformation(el);
- }
+ display: function(el) {
+ this.get('player').displayAdditionalInformation(el);
+ }
- }
+ }
});