diff options
author | DocNielsen <docnielsen@gmail.com> | 2012-11-06 06:44:50 +0100 |
---|---|---|
committer | DocNielsen <docnielsen@gmail.com> | 2012-11-06 06:44:50 +0100 |
commit | 34e9a7edd574e25ffdf199c712f44ab425c427b2 (patch) | |
tree | 689a380b43d78d6aa0a5b6c7745079273d3991ed | |
parent | f629297ceecfd6fb1ad64adf1549980d30e0343f (diff) | |
download | trackermap-server-34e9a7edd574e25ffdf199c712f44ab425c427b2.tar.gz trackermap-server-34e9a7edd574e25ffdf199c712f44ab425c427b2.tar.bz2 trackermap-server-34e9a7edd574e25ffdf199c712f44ab425c427b2.zip |
Update src/web/index.html
a little more space for the map.
id's is now only 30px wide, devices 200 wide, and positions 250 high.
See layout at http://docnielsen.dk:8082/
-rw-r--r-- | src/web/index.html | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/web/index.html b/src/web/index.html index 8b1de2e98..59623d6b0 100644 --- a/src/web/index.html +++ b/src/web/index.html @@ -842,7 +842,7 @@ Ext.onReady(function() { title: 'Devices', region: 'west', split: true, - width: 300, + width: 200, margins: {top: 5, bottom: 0, right: 0, left: 5}, sortableColumns: false, @@ -894,7 +894,7 @@ Ext.onReady(function() { } ], columns: [ - {header: 'Id', dataIndex: 'id'}, + {header: 'Id', dataIndex: 'id', width: 30}, {header: 'IMEI', dataIndex: 'imei', flex: 1} ], listeners: { @@ -923,7 +923,7 @@ Ext.onReady(function() { title: 'Positions', region: 'south', split: true, - height: 300, + height: 250, margins: {top: 0, bottom: 5, right: 5, left: 5}, sortableColumns: false, |