From 1d476af4678ccb368f3c1451e28fee0aabced33c Mon Sep 17 00:00:00 2001 From: Peter Cottle Date: Sat, 3 Nov 2012 15:57:26 -0700 Subject: [PATCH] now animationFactory is PURGED --- src/animationFactory.js | 2 +- src/commandViews.js | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/animationFactory.js b/src/animationFactory.js index 3d2cf8a1..d420a2b0 100644 --- a/src/animationFactory.js +++ b/src/animationFactory.js @@ -173,7 +173,7 @@ AnimationFactory.prototype.rebaseBirthPart = function(animationQueue, rebaseResp // need to delay to let bouncing finish this.delay(animationQueue); - this.refreshTree(animationQueue); + this.refreshTree(animationQueue, gitVisuals); }; AnimationFactory.prototype.delay = function(animationQueue, time) { diff --git a/src/commandViews.js b/src/commandViews.js index 35d13b02..d3cddd28 100644 --- a/src/commandViews.js +++ b/src/commandViews.js @@ -189,8 +189,8 @@ var CommandPromptView = Backbone.View.extend({ rollupCommands: function(numBack) { var which = this.commands.toArray().slice(1, Number(numBack) + 1); - console.log(this.commands.toArray()); - console.log(which); + which.reverse(); + var str = ''; _.each(which, function(commandEntry) { str += commandEntry.get('text') + ';';