mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-07-15 00:54:25 +02:00
one more test
This commit is contained in:
parent
219c36054f
commit
debd5f9fed
11 changed files with 92 additions and 26 deletions
|
@ -7313,8 +7313,8 @@ GitEngine.prototype.printAndCopyTree = function() {
|
|||
};
|
||||
|
||||
GitEngine.prototype.loadTree = function(tree) {
|
||||
// deep copy in case we use it a bunch
|
||||
tree = $.extend(true, {}, tree);
|
||||
// deep copy in case we use it a bunch. lol awesome copy method
|
||||
tree = JSON.parse(JSON.stringify(tree));
|
||||
|
||||
// first clear everything
|
||||
this.removeAll();
|
||||
|
@ -23877,8 +23877,8 @@ GitEngine.prototype.printAndCopyTree = function() {
|
|||
};
|
||||
|
||||
GitEngine.prototype.loadTree = function(tree) {
|
||||
// deep copy in case we use it a bunch
|
||||
tree = $.extend(true, {}, tree);
|
||||
// deep copy in case we use it a bunch. lol awesome copy method
|
||||
tree = JSON.parse(JSON.stringify(tree));
|
||||
|
||||
// first clear everything
|
||||
this.removeAll();
|
||||
|
@ -29405,6 +29405,7 @@ var toGlobalize = {
|
|||
Markdown: require('markdown'),
|
||||
LevelDropdownView: require('../views/levelDropdownView'),
|
||||
BuilderViews: require('../views/builderViews'),
|
||||
LevelArbiter: require('../level/arbiter'),
|
||||
Intl: require('../intl')
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue