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/State.js | 46 +++++++++++++++++++++++++--------------------- 1 file changed, 25 insertions(+), 21 deletions(-) (limited to 'web/app/view/State.js') diff --git a/web/app/view/State.js b/web/app/view/State.js index 0804234f9..5cb31c676 100644 --- a/web/app/view/State.js +++ b/web/app/view/State.js @@ -13,27 +13,31 @@ * See the License for the specific language governing permissions and * limitations under the License. */ +(function () { + 'use strict'; -Ext.define('Traccar.view.State', { - extend: 'Ext.grid.Panel', - xtype: 'stateView', - - requires: [ - 'Traccar.view.StateController' - ], - - controller: 'state', - store: 'Attributes', + Ext.define('Traccar.view.State', { + extend: 'Ext.grid.Panel', + xtype: 'stateView', - title: strings.stateTitle, + requires: [ + 'Traccar.view.StateController' + ], - columns: [{ - text: strings.stateName, - dataIndex: 'name', - flex: 1 - }, { - text: strings.stateValue, - dataIndex: 'value', - flex: 1 - }] -}); + controller: 'state', + store: 'Attributes', + + title: strings.stateTitle, + + columns: [{ + text: strings.stateName, + dataIndex: 'name', + flex: 1 + }, { + text: strings.stateValue, + dataIndex: 'value', + flex: 1 + }] + }); + +})(); -- cgit v1.2.3