mirror of
https://github.com/BorysLevytskyi/BitwiseCmd.git
synced 2025-12-22 12:42:44 +01:00
23 lines
452 B
JavaScript
23 lines
452 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.set('rootView', rootViewElement)
|
|
this.initialize();
|
|
};
|
|
|
|
|
|
window.app = app;
|
|
|
|
})(window.core); |