From 3901c137690000038609edc2e14b3c81831e953e Mon Sep 17 00:00:00 2001 From: Abyss777 Date: Wed, 13 Jul 2016 13:08:22 +0500 Subject: Style fixes --- web/app/view/AttributesController.js | 4 +++- web/app/view/Notifications.js | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/web/app/view/AttributesController.js b/web/app/view/AttributesController.js index 2a9e71849..8e6ab82a4 100644 --- a/web/app/view/AttributesController.js +++ b/web/app/view/AttributesController.js @@ -38,6 +38,7 @@ Ext.define('Traccar.view.AttributesController', { } } store.addListener('add', function (store, records, index, eOpts) { + var i; for (i = 0; i < records.length; i++) { this.getView().record.get('attributes')[records[i].get('name')] = records[i].get('value'); } @@ -53,7 +54,8 @@ Ext.define('Traccar.view.AttributesController', { } }, this); store.addListener('remove', function (store, records, index, isMove, eOpts) { - for (var i = 0; i < records.length; i++) { + var i; + for (i = 0; i < records.length; i++) { delete this.getView().record.get('attributes')[records[i].get('name')]; } this.getView().record.dirty = true; diff --git a/web/app/view/Notifications.js b/web/app/view/Notifications.js index 996ce3748..5ff5f061f 100644 --- a/web/app/view/Notifications.js +++ b/web/app/view/Notifications.js @@ -30,7 +30,7 @@ Ext.define('Traccar.view.Notifications', { }, viewConfig: { - markDirty:false + markDirty: false }, columns: [{ -- cgit v1.2.3