]> git.proxmox.com Git - extjs.git/blame - extjs/build/examples/classic/app/nested-loading/app/view/Header.js
add extjs 6.0.1 sources
[extjs.git] / extjs / build / examples / classic / app / nested-loading / app / view / Header.js
CommitLineData
6527f429
DM
1/**\r
2 * The application header displayed at the top of the viewport\r
3 * @extends Ext.Component\r
4 */\r
5Ext.define('Books.view.Header', {\r
6 extend: 'Ext.Component',\r
7 \r
8 dock: 'top',\r
9 baseCls: 'app-header',\r
10 \r
11 initComponent: function() {\r
12 Ext.applyIf(this, {\r
13 html: 'Loading Nested Data Example'\r
14 });\r
15 \r
16 this.callParent(arguments);\r
17 }\r
18});