Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / examples / app / nested-loading / app.js
1 /*
2
3 This file is part of Ext JS 4
4
5 Copyright (c) 2011 Sencha Inc
6
7 Contact:  http://www.sencha.com/contact
8
9 GNU General Public License Usage
10 This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file.  Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html.
11
12 If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact.
13
14 */
15 /**
16  * Books.app
17  * A MVC application which displays a list of books and their reviews.
18  * Uses nested data which is loaded from a single json file.
19  */
20 Ext.application({
21     name: 'Books',
22
23     controllers: [
24         'Books'
25     ],
26     
27     autoCreateViewport: true
28 });
29