Blame view

ihm/app/view/Viewport.js 563 Bytes
346b85c6   Benjamin Renard   First commit with...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
Ext.define('treps.view.Viewport', {
	extend: 'Ext.container.Viewport',
	
	requires: [
		'treps.view.Application.Header.HeaderContainer',
		'treps.view.Application.Footer.FooterContainer',
		'treps.view.Application.Central.CentralContainer',
		'treps.view.Application.Help.HelpPanel'
	],

	layout: 'border',
	
	items: [
		{
			region: 'north',
			xtype: 'app_header'
		},
		{
			region: 'south',
			xtype: 'app_footer'
		},
		{
			region: 'center',
			xtype: 'app_central'
		},
		{
			region: 'east',
			xtype: 'app_help'
		}
	]
});