diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2012-11-06 00:27:22 -0800 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2012-11-06 00:27:22 -0800 |
commit | 912b693a6a2cdf4fd4fadd82f3735c966aacdc2e (patch) | |
tree | 689a380b43d78d6aa0a5b6c7745079273d3991ed | |
parent | f629297ceecfd6fb1ad64adf1549980d30e0343f (diff) | |
parent | 34e9a7edd574e25ffdf199c712f44ab425c427b2 (diff) | |
download | trackermap-server-912b693a6a2cdf4fd4fadd82f3735c966aacdc2e.tar.gz trackermap-server-912b693a6a2cdf4fd4fadd82f3735c966aacdc2e.tar.bz2 trackermap-server-912b693a6a2cdf4fd4fadd82f3735c966aacdc2e.zip |
Merge pull request #81 from DocNielsen/patch-4
Update src/web/index.html
-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, |