Files
BitwiseCmd/app/app.js
2015-04-04 16:37:54 +03:00

21 lines
382 B
JavaScript

(function (core) {
var di = new core.Container();
var app = new core.AppShell(di);
app.cmdConfig = core.ObservableObject.create({
emphasizeBytes: true
});
app.debugMode = false;
app.bootstrap = function(rootViewElement) {
this.rootViewElement = rootViewElement;
this.initialize();
};
window.app = app;
})(window.core);