Fixed bugs in js minifcation (resolved dependencies)

This commit is contained in:
BorisLevitskiy
2015-04-09 16:51:48 +03:00
parent 9cb06ee84c
commit 6b33b0019d
5 changed files with 19 additions and 4 deletions

23
src/js/app.js Normal file
View 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);