cms/app-client/app/services/player.js
changeset 242 523ca6e73353
parent 218 38e1a1446319
child 246 5b7ae96768be
--- a/cms/app-client/app/services/player.js	Sun Jul 17 14:41:03 2016 +0200
+++ b/cms/app-client/app/services/player.js	Sun Jul 17 22:17:24 2016 +0200
@@ -4,9 +4,11 @@
 
     items: [],
     item: null,
+    model: null,
 
-    model: null,
-    window: '', // Values are 'notice' or 'transcript' or ''
+    window: '',
+    playing: false,
+    reduce: false,
 
     init: function() {
         this.on('reset', Ember.run.bind(this, this.get('reset')));
@@ -14,8 +16,6 @@
 
     reset: function(id) {
         this.set('item', id);
-    },
-
-    playing: false
+    }
 
 });