awesome revert highlight down

This commit is contained in:
Peter Cottle 2013-06-04 14:31:14 -10:00
parent 2e10b6c173
commit a8fce5a4ab
3 changed files with 64 additions and 32 deletions

View file

@ -608,7 +608,7 @@ GitEngine.prototype.revert = function(whichCommits) {
// go highlight all the ones we will rebase first, in order
var destBranch = this.resolveID(toRebase[0]);
_.each(whichCommits, function(commit) {
_.each(toRebase, function(commit) {
chain = chain.then(_.bind(function() {
return this.animationFactory.playHighlightPromiseAnimation(
commit,
@ -637,7 +637,7 @@ GitEngine.prototype.revert = function(whichCommits) {
}, this);
// set up the promise chain
_.each(whichCommits, function(commit) {
_.each(toRebase, function(commit) {
chain = chain.then(function() {
chainStep(commit);
});
@ -915,7 +915,7 @@ GitEngine.prototype.commitStarter = function() {
newCommit,
this.gitVisuals
);
this.animationQueue.thenFinish(promise, deferred);
this.animationQueue.thenFinish(promise);
};
GitEngine.prototype.commit = function() {