mirror of
https://github.com/BorysLevytskyi/BitwiseCmd.git
synced 2026-02-02 00:54:30 +01:00
Fixed bugs in js minifcation (resolved dependencies)
This commit is contained in:
23
src/js/app.js
Normal file
23
src/js/app.js
Normal file
@@ -0,0 +1,23 @@
|
||||
(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);
|
||||
Reference in New Issue
Block a user