aboutsummaryrefslogtreecommitdiff
path: root/web/app
diff options
context:
space:
mode:
authorAnton Tananaev <anton.tananaev@gmail.com>2018-11-04 14:42:46 +1300
committerAnton Tananaev <anton.tananaev@gmail.com>2018-11-04 14:42:46 +1300
commit4ca21e3fa14c211d3ecbe1f4edb91143373e9595 (patch)
treea98506a08f50ba8cf1db35227f8e882b99bd9817 /web/app
parentc3f8353377eedecab9f3b973645e613c9ff2c80a (diff)
downloadetbsa-traccar-web-4ca21e3fa14c211d3ecbe1f4edb91143373e9595.tar.gz
etbsa-traccar-web-4ca21e3fa14c211d3ecbe1f4edb91143373e9595.tar.bz2
etbsa-traccar-web-4ca21e3fa14c211d3ecbe1f4edb91143373e9595.zip
Fix lint issues
Diffstat (limited to 'web/app')
-rw-r--r--web/app/store/AlarmTypes.js6
-rw-r--r--web/app/view/edit/Notifications.js2
2 files changed, 4 insertions, 4 deletions
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 += ', ';
}