diff --git a/src/js/git/index.js b/src/js/git/index.js index fa4ad2e8..d6f62597 100644 --- a/src/js/git/index.js +++ b/src/js/git/index.js @@ -9,6 +9,7 @@ var AnimationFactory = require('../visuals/animation/animationFactory').Animatio var AnimationQueue = require('../visuals/animation').AnimationQueue; var TreeCompare = require('./treeCompare').TreeCompare; +var Graph = require('../graph'); var Errors = require('../util/errors'); var Main = require('../app'); var Commands = require('../commands'); @@ -970,7 +971,7 @@ GitEngine.prototype.getTargetGraphDifference = function( var pushParent = function(parentID) { if (targetSet[parentID]) { - // we already have this commit, lets bounce + // we already have that commit, lets bounce return; } diff --git a/src/js/graph/index.js b/src/js/graph/index.js new file mode 100644 index 00000000..536ff057 --- /dev/null +++ b/src/js/graph/index.js @@ -0,0 +1,5 @@ + +var Graph = { +}; + +module.exports = Graph;