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/model/Attribute.js | 30 +++++++++++++++++------------- 1 file changed, 17 insertions(+), 13 deletions(-) (limited to 'web/app/model/Attribute.js') diff --git a/web/app/model/Attribute.js b/web/app/model/Attribute.js index 78acdb1d9..df53d02f0 100644 --- a/web/app/model/Attribute.js +++ b/web/app/model/Attribute.js @@ -13,18 +13,22 @@ * See the License for the specific language governing permissions and * limitations under the License. */ +(function () { + 'use strict'; -Ext.define('Traccar.model.Attribute', { - extend: 'Ext.data.Model', + Ext.define('Traccar.model.Attribute', { + extend: 'Ext.data.Model', - fields: [{ - name: 'priority', - type: 'int' - }, { - name: 'name', - type: 'string' - }, { - name: 'value', - type: 'string' - }] -}); + fields: [{ + name: 'priority', + type: 'int' + }, { + name: 'name', + type: 'string' + }, { + name: 'value', + type: 'string' + }] + }); + +})(); -- cgit v1.2.3