mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-29 09:20:03 +02:00
everything moved somewhere now
This commit is contained in:
parent
92d562c8f9
commit
b21185dd34
4 changed files with 20 additions and 5051 deletions
5033
build/bundle.js
5033
build/bundle.js
File diff suppressed because it is too large
Load diff
19
src/debug.js
19
src/debug.js
|
@ -1,19 +0,0 @@
|
|||
var toGlobalize = {
|
||||
Tree: require('./tree'),
|
||||
Visuals: require('./visuals'),
|
||||
Git: require('./git'),
|
||||
CommandModel: require('./models/commandModel'),
|
||||
Levels: require('./levels'),
|
||||
Constants: require('./constants'),
|
||||
Collections: require('./collections'),
|
||||
Async: require('./animation'),
|
||||
AnimationFactory: require('./animation/animationFactory'),
|
||||
Main: require('./app/main')
|
||||
};
|
||||
|
||||
_.each(toGlobalize, function(module) {
|
||||
_.extend(window, module);
|
||||
});
|
||||
|
||||
window.events = toGlobalize.Main.getEvents();
|
||||
|
19
src/util/debug.js
Normal file
19
src/util/debug.js
Normal file
|
@ -0,0 +1,19 @@
|
|||
var toGlobalize = {
|
||||
Tree: require('../tree'),
|
||||
Visuals: require('../visuals'),
|
||||
Git: require('../git'),
|
||||
CommandModel: require('../models/commandModel'),
|
||||
Levels: require('../levels'),
|
||||
Constants: require('../constants'),
|
||||
Collections: require('../collections'),
|
||||
Async: require('../animation'),
|
||||
AnimationFactory: require('../animation/animationFactory'),
|
||||
Main: require('../app/main')
|
||||
};
|
||||
|
||||
_.each(toGlobalize, function(module) {
|
||||
_.extend(window, module);
|
||||
});
|
||||
|
||||
window.events = toGlobalize.Main.getEvents();
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue