]> git.proxmox.com Git - extjs.git/blame - extjs/examples/modern/geocongress/app/view/Main.js
add extjs 6.0.1 sources
[extjs.git] / extjs / examples / modern / geocongress / app / view / Main.js
CommitLineData
6527f429
DM
1/**\r
2 * The main view is a Card panel, initially containing the splash screen\r
3 */\r
4Ext.define('GeoCon.view.Main', {\r
5 extend: 'Ext.Container',\r
6 requires: ['GeoCon.view.Splash'],\r
7\r
8 id: 'viewport',\r
9\r
10 config: {\r
11 layout: {\r
12 type: 'card',\r
13 animation: {\r
14 duration: 300,\r
15 easing: 'ease-in-out',\r
16 type: 'slide',\r
17 direction: 'left'\r
18 }\r
19 },\r
20 fullscreen: true,\r
21\r
22 items: [\r
23 { xclass: 'GeoCon.view.Splash' }\r
24 ]\r
25 }\r
26});\r