mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-07-10 22:54:24 +02:00
more moving
This commit is contained in:
parent
4ea4b91296
commit
92d562c8f9
4 changed files with 19 additions and 1716 deletions
1715
build/bundle.js
1715
build/bundle.js
File diff suppressed because it is too large
Load diff
|
@ -1,5 +1,5 @@
|
||||||
var Main = require('./app/main');
|
var Main = require('../app/main');
|
||||||
var GRAPHICS = require('./constants').GRAPHICS;
|
var GRAPHICS = require('../constants').GRAPHICS;
|
||||||
|
|
||||||
var randomHueString = function() {
|
var randomHueString = function() {
|
||||||
var hue = Math.random();
|
var hue = Math.random();
|
|
@ -1,12 +1,12 @@
|
||||||
var Main = require('./app/main');
|
var Main = require('../app/main');
|
||||||
var GRAPHICS = require('./constants').GRAPHICS;
|
var GRAPHICS = require('../constants').GRAPHICS;
|
||||||
var GLOBAL = require('./constants').GLOBAL;
|
var GLOBAL = require('../constants').GLOBAL;
|
||||||
|
|
||||||
var Collections = require('./collections');
|
var Collections = require('../collections');
|
||||||
var CommitCollection = Collections.CommitCollection;
|
var CommitCollection = Collections.CommitCollection;
|
||||||
var BranchCollection = Collections.BranchCollection;
|
var BranchCollection = Collections.BranchCollection;
|
||||||
|
|
||||||
var Tree = require('./tree');
|
var Tree = require('../tree');
|
||||||
var VisEdgeCollection = Tree.VisEdgeCollection;
|
var VisEdgeCollection = Tree.VisEdgeCollection;
|
||||||
var VisBranchCollection = Tree.VisBranchCollection;
|
var VisBranchCollection = Tree.VisBranchCollection;
|
||||||
var VisNode = Tree.VisNode;
|
var VisNode = Tree.VisNode;
|
||||||
|
@ -37,7 +37,7 @@ var Visualization = Backbone.View.extend({
|
||||||
paper: this.paper
|
paper: this.paper
|
||||||
});
|
});
|
||||||
|
|
||||||
var GitEngine = require('./git').GitEngine;
|
var GitEngine = require('../git').GitEngine;
|
||||||
this.gitEngine = new GitEngine({
|
this.gitEngine = new GitEngine({
|
||||||
collection: this.commitCollection,
|
collection: this.commitCollection,
|
||||||
branches: this.branchCollection,
|
branches: this.branchCollection,
|
Loading…
Add table
Add a link
Reference in a new issue