]> git.proxmox.com Git - sencha-touch.git/blob - src/examples/jog-with-friends/app/view/NoFriends.js
import Sencha Touch 2.4.2 source
[sencha-touch.git] / src / examples / jog-with-friends / app / view / NoFriends.js
1 /**
2 * This screen is displayed if the user has no friends.
3 */
4 Ext.define('JWF.view.NoFriends', {
5 extend: 'Ext.Container',
6
7 config: {
8 cls: 'noFriends',
9 tpl: [
10 '<div class="welcomeNoFriends">',
11 '<img src="https://graph.facebook.com/{id}/picture?type=square" />',
12 'Welcome to Jog with Friends, <b>{first_name}</b>!',
13 '</div>'
14 ]
15 }
16 });