mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-26 16:08:34 +02:00
much more sane
This commit is contained in:
parent
b21185dd34
commit
efd656059e
16 changed files with 9868 additions and 3 deletions
19
src/js/util/debug.js
Normal file
19
src/js/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