]> git.proxmox.com Git - sencha-touch.git/blob - src/examples/device/app.js
import Sencha Touch 2.4.2 source
[sencha-touch.git] / src / examples / device / app.js
1 //<debug>
2 Ext.Loader.setPath({
3 'Ext': '../../src'
4 });
5 //</debug>
6
7 Ext.application({
8 name: 'Device',
9
10 stores: ['Images'],
11
12 views: [
13 'Main',
14 'Information',
15 'Camera',
16 'Contacts',
17 'Connection',
18 'Notification',
19 'Orientation',
20 'Geolocation',
21 'Push',
22 'Purchases'
23 ],
24
25 controllers: [
26 'Application',
27 'Camera',
28 'Contacts',
29 'Notification',
30 'Connection',
31 'Push',
32 'Purchases',
33 'Scheme'
34 ],
35
36 launch: function() {
37 Ext.create('Device.view.Main');
38 }
39 });