app.js 326 B

12345678910111213141516
  1. Ext.application({
  2. name: 'FV',
  3. // All the paths for custom classes
  4. paths: {
  5. 'Ext.ux': '../../../examples/ux/'
  6. },
  7. // Define all the controllers that should initialize at boot up of your application
  8. controllers: [
  9. 'Articles',
  10. 'Feeds'
  11. ],
  12. autoCreateViewport: true
  13. });