mirror of
https://github.com/pcottle/learnGitBranching.git
synced 2025-06-29 17:27:22 +02:00
working on tree compare tests etc
This commit is contained in:
parent
89fa08e149
commit
3d8e40851e
5 changed files with 71 additions and 4 deletions
|
@ -28,7 +28,9 @@ var toGlobalize = {
|
|||
};
|
||||
|
||||
_.each(toGlobalize, function(module) {
|
||||
_.extend(window, module);
|
||||
for (var key in module) {
|
||||
window['debug_' + key] = module[key];
|
||||
}
|
||||
});
|
||||
|
||||
$(document).ready(function() {
|
||||
|
@ -37,5 +39,6 @@ $(document).ready(function() {
|
|||
window.sandbox = toGlobalize.Main.getSandbox();
|
||||
window.modules = toGlobalize;
|
||||
window.levelDropdown = toGlobalize.Main.getLevelDropdown();
|
||||
window.under = _;
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue