]> git.proxmox.com Git - sencha-touch.git/blob - src/examples/touchflickr/app/profile/Phone.js
import Sencha Touch 2.4.2 source
[sencha-touch.git] / src / examples / touchflickr / app / profile / Phone.js
1 Ext.define('Flickr.profile.Phone', {
2 extend: 'Ext.app.Profile',
3
4 config: {
5 views: ['Main'],
6 controllers: ['Search']
7 },
8
9 isActive: function() {
10 return Ext.os.is.Phone;
11 },
12
13 launch: function() {
14 Ext.create('Flickr.view.phone.Main');
15 }
16 });