From 48f981a2a9755fb0af6497020e499bb0883e0e1f Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sat, 3 Oct 2015 21:01:45 +1300 Subject: Enable JavaScript strict mode --- web/app/view/Main.js | 76 +++++++++++++++++++++++++++------------------------- 1 file changed, 40 insertions(+), 36 deletions(-) (limited to 'web/app/view/Main.js') diff --git a/web/app/view/Main.js b/web/app/view/Main.js index ee1073e92..1ad61d73f 100644 --- a/web/app/view/Main.js +++ b/web/app/view/Main.js @@ -13,51 +13,55 @@ * See the License for the specific language governing permissions and * limitations under the License. */ +(function () { + 'use strict'; -Ext.define('Traccar.view.Main', { - extend: 'Ext.container.Viewport', - alias: 'widget.main', + Ext.define('Traccar.view.Main', { + extend: 'Ext.container.Viewport', + alias: 'widget.main', - requires: [ - 'Traccar.view.Device', - 'Traccar.view.State', - 'Traccar.view.Report', - 'Traccar.view.Map' - ], + requires: [ + 'Traccar.view.Device', + 'Traccar.view.State', + 'Traccar.view.Report', + 'Traccar.view.Map' + ], - layout: 'border', - - defaults: { - header: false, - collapsible: true, - split: true - }, - - items: [{ - region:'west', layout: 'border', - width: styles.deviceWidth, defaults: { - split: true, - flex: 1 + header: false, + collapsible: true, + split: true }, items: [{ - region: 'center', - xtype: 'deviceView' + region: 'west', + layout: 'border', + width: styles.deviceWidth, + + defaults: { + split: true, + flex: 1 + }, + + items: [{ + region: 'center', + xtype: 'deviceView' + }, { + region: 'south', + xtype: 'stateView' + }] }, { region: 'south', - xtype: 'stateView' + xtype: 'reportView', + height: styles.reportHeight + }, { + region: 'center', + xtype: 'mapView', + header: true, + collapsible: false }] - }, { - region: 'south', - xtype: 'reportView', - height: styles.reportHeight - }, { - region: 'center', - xtype: 'mapView', - header: true, - collapsible: false - }] -}); + }); + +})(); -- cgit v1.2.3