1234567891011121314151617 |
- Ext.application({
- name: "GeekFlicks",
- appFolder: "app",
- controllers: ['Movies'],
- launch: function () {
- Ext.create('Ext.container.Viewport', {
- layout: 'fit',
- items: [{
- xtype: 'panel',
- title: 'Top Geek Flicks of All Time',
- items: [{
- xtype: 'movieseditor'
- }]
- }]
- });
- }
- });
|