broken right now on master (i know bad) but im transitioning to require, hold ya horses

This commit is contained in:
Peter Cottle 2012-12-07 13:41:34 -08:00
parent 9ee1490aa3
commit d7f3653ad9
4 changed files with 984 additions and 4 deletions

View file

@ -1,14 +1,16 @@
var AnimationFactory = require('./animationFactory').AnimationFactory;
/**
* Globals
*/
var events = _.clone(Backbone.Events);
var ui = null;
var animationFactory = null;
/**
* Static Classes
*/
var animationFactory = new AnimationFactory();
animationFactory = new AnimationFactory();
///////////////////////////////////////////////////////////////////////
@ -45,3 +47,7 @@ function UI() {
$('#commandTextField').focus();
}
exports.events = events;
exports.ui = ui;
exports.animationFactory = animationFactory;