Upgrade to ExtJS 4.0.1 - Released 05/18/2011
[extjs.git] / examples / app / feed-viewer / app.js
1 Ext.application({
2     name: 'FV',
3
4     // All the paths for custom classes
5     paths: {
6         'Ext.ux': '../../../examples/ux/'
7     },
8
9     // Define all the controllers that should initialize at boot up of your application
10     controllers: [
11         'Articles',
12         'Feeds'
13     ],
14     
15     autoCreateViewport: true
16 });