big progress

This commit is contained in:
Peter Cottle 2013-01-04 14:32:51 -08:00
parent 096ec32393
commit 0358291e6f
7 changed files with 171 additions and 122 deletions

View file

@ -16,7 +16,8 @@ var toGlobalize = {
RebaseView: require('../views/rebaseView'),
Views: require('../views'),
MultiView: require('../views/multiView'),
ZoomLevel: require('../util/zoomLevel')
ZoomLevel: require('../util/zoomLevel'),
VisBranch: require('../visuals/visBranch')
};
_.each(toGlobalize, function(module) {
@ -27,5 +28,6 @@ $(document).ready(function() {
window.events = toGlobalize.Main.getEvents();
window.eventBaton = toGlobalize.Main.getEventBaton();
window.sandbox = toGlobalize.Main.getSandbox();
window.modules = toGlobalize;
});