cms/app-client/app/components/toolbar-component.js
changeset 414 5c6c526a7fc1
parent 373 e952c8a31a2b
--- 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);
+    }
 
-	}
+  }
 
 });