more moving

This commit is contained in:
Peter Cottle 2012-12-14 01:31:07 -08:00
parent 4ea4b91296
commit 92d562c8f9
4 changed files with 19 additions and 1716 deletions

File diff suppressed because it is too large Load diff

View file

@ -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();

View file

@ -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,