mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-25 23:48:34 +02:00
rebuild fix
This commit is contained in:
parent
8b66edc878
commit
d52830f3d2
3 changed files with 9 additions and 2 deletions
|
@ -8490,7 +8490,7 @@ GitEngine.prototype.updateCommitParentsForHgRebase = function(commitSet) {
|
|||
};
|
||||
|
||||
GitEngine.prototype.pruneTreeAndPlay = function() {
|
||||
return this.pruneTree() &&
|
||||
return this.pruneTree() &&
|
||||
this.animationFactory.playRefreshAnimationSlow(this.gitVisuals);
|
||||
};
|
||||
|
||||
|
@ -8520,9 +8520,11 @@ GitEngine.prototype.pruneTree = function() {
|
|||
_.each(toDelete, function(commit) {
|
||||
commit.removeFromParents();
|
||||
this.commitCollection.remove(commit);
|
||||
|
||||
var ID = commit.get('id');
|
||||
this.refs[ID] = undefined;
|
||||
delete this.refs[ID];
|
||||
|
||||
var visNode = commit.get('visNode');
|
||||
if (visNode) {
|
||||
visNode.removeAll();
|
||||
|
@ -26767,7 +26769,7 @@ GitEngine.prototype.updateCommitParentsForHgRebase = function(commitSet) {
|
|||
};
|
||||
|
||||
GitEngine.prototype.pruneTreeAndPlay = function() {
|
||||
return this.pruneTree() &&
|
||||
return this.pruneTree() &&
|
||||
this.animationFactory.playRefreshAnimationSlow(this.gitVisuals);
|
||||
};
|
||||
|
||||
|
@ -26797,9 +26799,11 @@ GitEngine.prototype.pruneTree = function() {
|
|||
_.each(toDelete, function(commit) {
|
||||
commit.removeFromParents();
|
||||
this.commitCollection.remove(commit);
|
||||
|
||||
var ID = commit.get('id');
|
||||
this.refs[ID] = undefined;
|
||||
delete this.refs[ID];
|
||||
|
||||
var visNode = commit.get('visNode');
|
||||
if (visNode) {
|
||||
visNode.removeAll();
|
||||
|
|
|
@ -1351,9 +1351,11 @@ GitEngine.prototype.pruneTree = function() {
|
|||
_.each(toDelete, function(commit) {
|
||||
commit.removeFromParents();
|
||||
this.commitCollection.remove(commit);
|
||||
|
||||
var ID = commit.get('id');
|
||||
this.refs[ID] = undefined;
|
||||
delete this.refs[ID];
|
||||
|
||||
var visNode = commit.get('visNode');
|
||||
if (visNode) {
|
||||
visNode.removeAll();
|
||||
|
|
1
todo.txt
1
todo.txt
|
@ -41,6 +41,7 @@ Ideas for cleaning
|
|||
Done things:
|
||||
(I only started this on Dec 17th 2012 to get a better sense of what was done)
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
[x] TONS of hg stuff
|
||||
[x] finally work on an upload / download animation
|
||||
[x] factor out golf thing too
|
||||
[x] factor regexes and instant commands into one module
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue