RIPPING out arbor.js code

This commit is contained in:
Peter Cottle 2012-09-16 10:23:03 -07:00
parent f5fcd32815
commit 51ab487003
20 changed files with 1 additions and 3355 deletions

View file

@ -20,7 +20,6 @@ var CommandBuffer = Backbone.Model.extend({
this.buffer = [];
this.timeout = null;
this.delay = TIME.betweenCommandsDelay;
},
addCommand: function(command) {
@ -43,7 +42,7 @@ var CommandBuffer = Backbone.Model.extend({
setTimeout: function() {
this.timeout = setTimeout(_.bind(function() {
this.sipFromBuffer();
}, this), this.delay);
}, this), TIME.betweenCommandsDelay);
},
popAndProcess: function() {