Files
BitwiseCmd/app/app.js
2015-04-04 16:10:17 +03:00

16 lines
342 B
JavaScript

(function (should, Container, AppShell) {
var di = new Container();
var app = new AppShell(di);
app.debugMode = false;
app.bootstrap = function(rootViewElement) {
this.rootViewElement = rootViewElement;
this.initialize();
};
window.app = app;
})(window.should, window.Container, window.AppShell);