diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-04-30 17:02:31 +1200 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-04-30 17:02:31 +1200 |
commit | 49c0907a74cb1dc7dd0351dfbb1c16e7822e696f (patch) | |
tree | d20c36da263fd41d254bdc82c009e268ad4205e2 /web/MainView.js | |
parent | fceecda9e32313916ab8695192c6e12bb59bd717 (diff) | |
download | trackermap-server-49c0907a74cb1dc7dd0351dfbb1c16e7822e696f.tar.gz trackermap-server-49c0907a74cb1dc7dd0351dfbb1c16e7822e696f.tar.bz2 trackermap-server-49c0907a74cb1dc7dd0351dfbb1c16e7822e696f.zip |
Add dummy report panel
Diffstat (limited to 'web/MainView.js')
-rw-r--r-- | web/MainView.js | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/web/MainView.js b/web/MainView.js index e736b82b8..f6c9a5842 100644 --- a/web/MainView.js +++ b/web/MainView.js @@ -19,7 +19,8 @@ Ext.define('MainView', { requires: [ 'DeviceView', - 'MapView' + 'MapView', + 'ReportView' ], layout: 'border', @@ -34,6 +35,11 @@ Ext.define('MainView', { xtype: 'device-view', width: Styles.device_width }, { + region: 'south', + xtype: 'report-view', + header: false, + height: Styles.report_height + }, { region: 'center', xtype: 'map-view', collapsible: false |