From 99d132dc78b42b6cc5833b3a7faf30d2fe56186f Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sun, 4 Oct 2015 18:23:32 +1300 Subject: Disable JavaScript strict mode --- web/app/model/Command.js | 30 +++++++++++++----------------- 1 file changed, 13 insertions(+), 17 deletions(-) (limited to 'web/app/model/Command.js') diff --git a/web/app/model/Command.js b/web/app/model/Command.js index 0eb17ec40..3e848b57d 100644 --- a/web/app/model/Command.js +++ b/web/app/model/Command.js @@ -13,22 +13,18 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -(function () { - 'use strict'; - Ext.define('Traccar.model.Command', { - extend: 'Ext.data.Model', - identifier: 'negative', +Ext.define('Traccar.model.Command', { + extend: 'Ext.data.Model', + identifier: 'negative', - fields: [{ - name: 'deviceId', - type: 'int' - }, { - name: 'type', - type: 'string' - }, { - name: 'attributes' - }] - }); - -})(); + fields: [{ + name: 'deviceId', + type: 'int' + }, { + name: 'type', + type: 'string' + }, { + name: 'attributes' + }] +}); -- cgit v1.2.3