mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-28 17:00:04 +02:00
collections
This commit is contained in:
parent
dc1934cdd2
commit
5ab38e9c13
6 changed files with 119 additions and 119 deletions
|
@ -23,7 +23,7 @@ $(document).ready(function(){
|
|||
});
|
||||
|
||||
function UI() {
|
||||
var Collections = require('../collections');
|
||||
var Collections = require('../models/collections');
|
||||
var CommandViews = require('../views/commandViews');
|
||||
|
||||
this.commandCollection = new Collections.CommandCollection();
|
||||
|
|
|
@ -5,7 +5,7 @@ var toGlobalize = {
|
|||
CommandModel: require('../models/commandModel'),
|
||||
Levels: require('../levels'),
|
||||
Constants: require('../util/constants'),
|
||||
Collections: require('../collections'),
|
||||
Collections: require('../models/collections'),
|
||||
Async: require('../visuals/animation'),
|
||||
AnimationFactory: require('../visuals/animationFactory'),
|
||||
Main: require('../app')
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
var CommandEntryCollection = require('../collections').CommandEntryCollection;
|
||||
var CommandEntryCollection = require('../models/collections').CommandEntryCollection;
|
||||
var Main = require('../app');
|
||||
var Command = require('../models/commandModel').Command;
|
||||
var CommandEntry = require('../models/commandModel').CommandEntry;
|
||||
|
|
|
@ -2,7 +2,7 @@ var Main = require('../app');
|
|||
var GRAPHICS = require('../util/constants').GRAPHICS;
|
||||
var GLOBAL = require('../util/constants').GLOBAL;
|
||||
|
||||
var Collections = require('../collections');
|
||||
var Collections = require('../models/collections');
|
||||
var CommitCollection = Collections.CommitCollection;
|
||||
var BranchCollection = Collections.BranchCollection;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue