mirror of
https://github.com/BorysLevytskyi/BitwiseCmd.git
synced 2025-12-23 21:22:48 +01:00
16 lines
342 B
JavaScript
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); |