app.js 425 B

1234567891011121314151617
  1. Ext.application({
  2. name: "GeekFlicks",
  3. appFolder: "app",
  4. controllers: ['Movies'],
  5. launch: function () {
  6. Ext.create('Ext.container.Viewport', {
  7. layout: 'fit',
  8. items: [{
  9. xtype: 'panel',
  10. title: 'Top Geek Flicks of All Time',
  11. items: [{
  12. xtype: 'movieseditor'
  13. }]
  14. }]
  15. });
  16. }
  17. });