From 4ca21e3fa14c211d3ecbe1f4edb91143373e9595 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Sun, 4 Nov 2018 14:42:46 +1300 Subject: Fix lint issues --- web/app/store/AlarmTypes.js | 6 +++--- web/app/view/edit/Notifications.js | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'web/app') diff --git a/web/app/store/AlarmTypes.js b/web/app/store/AlarmTypes.js index 9520359..1ee7ffe 100644 --- a/web/app/store/AlarmTypes.js +++ b/web/app/store/AlarmTypes.js @@ -19,8 +19,8 @@ Ext.define('Traccar.store.AlarmTypes', { extend: 'Ext.data.Store', fields: ['key', 'name'], - data: function () { - var items = []; + data: (function () { + var key, items = []; for (key in Strings) { if (Strings.hasOwnProperty(key) && key.lastIndexOf('alarm', 0) === 0) { items.push({ @@ -30,5 +30,5 @@ Ext.define('Traccar.store.AlarmTypes', { } } return items; - }() + })() }); diff --git a/web/app/view/edit/Notifications.js b/web/app/view/edit/Notifications.js index 7983c4d..9cf97b1 100644 --- a/web/app/view/edit/Notifications.js +++ b/web/app/view/edit/Notifications.js @@ -67,7 +67,7 @@ Ext.define('Traccar.view.edit.Notifications', { if (alarms) { alarms = alarms.split(','); for (i = 0; i < alarms.length; i++) { - var key = 'alarm' + alarms[i].charAt(0).toUpperCase() + alarms[i].slice(1); + key = 'alarm' + alarms[i].charAt(0).toUpperCase() + alarms[i].slice(1); if (result) { result += ', '; } -- cgit v1.2.3