2015: live: Remove speakerPosition cruft.
authorDavid Thompson <dthompson2@worcester.edu>
Sat, 21 Mar 2015 01:15:05 +0000 (21:15 -0400)
committerDavid Thompson <dthompson2@worcester.edu>
Sat, 21 Mar 2015 01:15:05 +0000 (21:15 -0400)
2015/assets/js/stream.js

index 5afec44df7660385a8fa369464a8ae4167f5a02f..ce1dbd22344e21454d85fa79a0feaed935d2790a 100644 (file)
@@ -112,11 +112,6 @@ app.controller = function() {
   this.stream = m.prop(app.streams[0]);
   this.stats = m.prop(app.nullStats);
 
-  this.speakerPosition = m.prop({
-    x: 0,
-    y: 0
-  });
-
   this.showDesktop = m.prop(false);
 
   this.updateStats = function() {
@@ -130,7 +125,6 @@ app.controller = function() {
 
 app.view = function(ctrl) {
   var stream = ctrl.stream();
-  var pos = ctrl.speakerPosition();
   var showDesktop = ctrl.showDesktop();
   var stats = ctrl.stats();