now animationFactory is PURGED

This commit is contained in:
Peter Cottle 2012-11-03 15:57:26 -07:00
parent a009b9783a
commit 1d476af467
2 changed files with 3 additions and 3 deletions

View file

@ -173,7 +173,7 @@ AnimationFactory.prototype.rebaseBirthPart = function(animationQueue, rebaseResp
// need to delay to let bouncing finish // need to delay to let bouncing finish
this.delay(animationQueue); this.delay(animationQueue);
this.refreshTree(animationQueue); this.refreshTree(animationQueue, gitVisuals);
}; };
AnimationFactory.prototype.delay = function(animationQueue, time) { AnimationFactory.prototype.delay = function(animationQueue, time) {

View file

@ -189,8 +189,8 @@ var CommandPromptView = Backbone.View.extend({
rollupCommands: function(numBack) { rollupCommands: function(numBack) {
var which = this.commands.toArray().slice(1, Number(numBack) + 1); var which = this.commands.toArray().slice(1, Number(numBack) + 1);
console.log(this.commands.toArray()); which.reverse();
console.log(which);
var str = ''; var str = '';
_.each(which, function(commandEntry) { _.each(which, function(commandEntry) {
str += commandEntry.get('text') + ';'; str += commandEntry.get('text') + ';';