WOW somehow got it to work with events being a module export

This commit is contained in:
Peter Cottle 2012-12-09 22:20:29 -08:00
parent 6327566a63
commit 7ef0d19e12
7 changed files with 70 additions and 46 deletions

View file

@ -52,7 +52,9 @@ function UI() {
$('#commandTextField').focus();
}
exports.events = events;
exports.getEvents = function() {
return events;
};
exports.ui = ui;
exports.animationFactory = animationFactory;