mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-07-10 06:34:26 +02:00
WIP for get tree quick
This commit is contained in:
parent
6c487cc053
commit
bbb668b016
3 changed files with 2 additions and 2 deletions
|
@ -32,6 +32,7 @@ function getMockFactory() {
|
||||||
aQueue.finish();
|
aQueue.finish();
|
||||||
};
|
};
|
||||||
mockFactory.refreshTree = function(aQueue, gitVisuals) {
|
mockFactory.refreshTree = function(aQueue, gitVisuals) {
|
||||||
|
console.log('being used');
|
||||||
aQueue.finish();
|
aQueue.finish();
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -44,7 +44,6 @@ TreeCompare.dispatch = function(levelBlob, goalTreeString, treeToCompare) {
|
||||||
TreeCompare.compareAllBranchesWithinTreesAndHEAD = function(treeA, treeB) {
|
TreeCompare.compareAllBranchesWithinTreesAndHEAD = function(treeA, treeB) {
|
||||||
treeA = this.convertTreeSafe(treeA);
|
treeA = this.convertTreeSafe(treeA);
|
||||||
treeB = this.convertTreeSafe(treeB);
|
treeB = this.convertTreeSafe(treeB);
|
||||||
debugger;
|
|
||||||
|
|
||||||
return treeA.HEAD.target == treeB.HEAD.target && this.compareAllBranchesWithinTrees(treeA, treeB);
|
return treeA.HEAD.target == treeB.HEAD.target && this.compareAllBranchesWithinTrees(treeA, treeB);
|
||||||
};
|
};
|
||||||
|
|
|
@ -792,7 +792,7 @@ var CanvasTerminalHolder = BaseView.extend({
|
||||||
this.destination = $('body');
|
this.destination = $('body');
|
||||||
this.JSON = {
|
this.JSON = {
|
||||||
title: options.title || intl.str('goal-to-reach'),
|
title: options.title || intl.str('goal-to-reach'),
|
||||||
text: options.text || intl.str('goal-vis-info')
|
text: options.text || intl.str('hide-goal')
|
||||||
};
|
};
|
||||||
|
|
||||||
this.render();
|
this.render();
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue