Upgrade to ExtJS 4.0.1 - Released 05/18/2011
[extjs.git] / jsbuilder / src / generators / app / templates / Application.js
1 /**
2  * This file sets application-wide settings and launches the application when everything has
3  * been loaded onto the page. By default we just render the application\s Viewport inside the
4  * launch method (see app/views/Viewport.js).
5  */ 
6 {name} = new Ext.Application({
7     defaultTarget: "viewport",
8     name: "{name}",
9     launch: function() {
10         this.viewport = new {name}.Viewport();
11     }
12 });