]> git.proxmox.com Git - sencha-touch.git/blob - src/examples/oreilly/app/view/speaker/Info.js
import Sencha Touch 2.4.2 source
[sencha-touch.git] / src / examples / oreilly / app / view / speaker / Info.js
1 Ext.define('Oreilly.view.speaker.Info', {
2
3 extend: 'Ext.Container',
4 xtype: 'speakerInfo',
5
6 config: {
7
8 cls: 'speakerInfo',
9 tpl: [
10 '<div class="header">',
11 '<div class="avatar" style="background-image: url({photo});"></div>',
12 '<h3>{first_name} {last_name}</h3>',
13 '<h4>{position}, {affiliation}</h4>',
14 '</div>',
15 '<p>{bio}</p>'
16 ]
17 }
18 });