]> git.proxmox.com Git - sencha-touch.git/blob - src/examples/touchstyle/app/view/Main.js
import Sencha Touch 2.4.2 source
[sencha-touch.git] / src / examples / touchstyle / app / view / Main.js
1 Ext.define('TouchStyle.view.Main', {
2 extend: 'Ext.navigation.View',
3 xtype: 'main',
4
5 requires: [
6 'TouchStyle.view.Categories'
7 ],
8
9 config: {
10 fullscreen: true,
11 autoDestroy: false,
12
13 navigationBar: {
14 backButton: {
15 iconCls: 'back'
16 }
17 }
18 },
19
20 pop: function() {
21 this.fireEvent('beforepop', this);
22
23 this.callParent(arguments);
24 }
25 });