working on tree compare tests etc

This commit is contained in:
Peter Cottle 2013-06-08 14:11:13 -10:00
parent 89fa08e149
commit 3d8e40851e
5 changed files with 71 additions and 4 deletions

View file

@ -28136,7 +28136,9 @@ var toGlobalize = {
};
_.each(toGlobalize, function(module) {
_.extend(window, module);
for (var key in module) {
window['debug_' + key] = module[key];
}
});
$(document).ready(function() {
@ -28145,6 +28147,7 @@ $(document).ready(function() {
window.sandbox = toGlobalize.Main.getSandbox();
window.modules = toGlobalize;
window.levelDropdown = toGlobalize.Main.getLevelDropdown();
window.under = _;
});