diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-10-03 21:57:33 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-10-03 21:57:33 +1300 |
commit | 4aabd4f6256ffca913f9718399b5d6aa778868b8 (patch) | |
tree | 3d7233ee35c21952cbdfb2324a24566128b0bb2b /web/app/view/UserDialogController.js | |
parent | a7a2174c927d27eead9139eb9ff65dc87d7eefbc (diff) | |
download | trackermap-server-4aabd4f6256ffca913f9718399b5d6aa778868b8.tar.gz trackermap-server-4aabd4f6256ffca913f9718399b5d6aa778868b8.tar.bz2 trackermap-server-4aabd4f6256ffca913f9718399b5d6aa778868b8.zip |
Fix some more check style issues
Diffstat (limited to 'web/app/view/UserDialogController.js')
-rw-r--r-- | web/app/view/UserDialogController.js | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/web/app/view/UserDialogController.js b/web/app/view/UserDialogController.js index 6dbd44fa7..40c88a8b4 100644 --- a/web/app/view/UserDialogController.js +++ b/web/app/view/UserDialogController.js @@ -27,13 +27,14 @@ }, onSaveClick: function (button) { - var dialog = button.up('window').down('form'); + var dialog, record, store; + dialog = button.up('window').down('form'); dialog.updateRecord(); - var record = dialog.getRecord(); + record = dialog.getRecord(); if (record === Traccar.app.getUser()) { record.save(); } else { - var store = Ext.getStore('Users'); + store = Ext.getStore('Users'); if (record.phantom) { store.add(record); } |