Files
BitwiseCmd/app/app.js
2015-04-04 19:23:46 +03:00

22 lines
406 B
JavaScript

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