diff options
author | Abyss777 <abyss@fox5.ru> | 2016-07-13 13:08:22 +0500 |
---|---|---|
committer | Abyss777 <abyss@fox5.ru> | 2016-07-13 13:08:22 +0500 |
commit | 3901c137690000038609edc2e14b3c81831e953e (patch) | |
tree | 5c51569fc34dae3e58ddc43925521a9e95aa85bb /web | |
parent | 4414e093d708159d2016ae0fe54087e9fd3cb9d1 (diff) | |
download | trackermap-server-3901c137690000038609edc2e14b3c81831e953e.tar.gz trackermap-server-3901c137690000038609edc2e14b3c81831e953e.tar.bz2 trackermap-server-3901c137690000038609edc2e14b3c81831e953e.zip |
Style fixes
Diffstat (limited to 'web')
-rw-r--r-- | web/app/view/AttributesController.js | 4 | ||||
-rw-r--r-- | 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: [{ |