Blame view

js/app/app.js 411 Bytes
16035364   Benjamin Renard   First commit
1
2
3
4
5
6
7
8
9
10
11
12
/**
 * This file sets application-wide settings and launches the application when everything has
 * been loaded onto the page. By default we just render the applications Viewport inside the
 * launch method (see app/views/Viewport.js).
 */ 
AMDA-NG4 = new Ext.Application({
    defaultTarget: "viewport",
    name: "AMDA-NG4",
    launch: function() {
        this.viewport = new AMDA-NG4.Viewport();
    }
});