diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-10-03 20:27:15 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-10-03 20:27:15 +1300 |
commit | 8782eeec561e490b4262ba8983e69623daaf5845 (patch) | |
tree | 6cb8c6ccb1b4db249133d71fc521155f63b241ca /web/app/view/DeviceController.js | |
parent | 458809c4ee29e3410686bf6d8c80c746caf9724f (diff) | |
download | traccar-server-8782eeec561e490b4262ba8983e69623daaf5845.tar.gz traccar-server-8782eeec561e490b4262ba8983e69623daaf5845.tar.bz2 traccar-server-8782eeec561e490b4262ba8983e69623daaf5845.zip |
Add space after function keyword
Diffstat (limited to 'web/app/view/DeviceController.js')
-rw-r--r-- | web/app/view/DeviceController.js | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/web/app/view/DeviceController.js b/web/app/view/DeviceController.js index d714d89d4..64b3b8826 100644 --- a/web/app/view/DeviceController.js +++ b/web/app/view/DeviceController.js @@ -36,18 +36,18 @@ Ext.define('Traccar.view.DeviceController', { } }, - init: function() { + init: function () { if (Traccar.app.getUser().get('admin')) { this.lookupReference('settingsServerButton').setHidden(false); this.lookupReference('settingsUsersButton').setHidden(false); } }, - onLogoutClick: function() { + onLogoutClick: function () { Ext.create('Traccar.view.LoginController').logout(); }, - onAddClick: function() { + onAddClick: function () { var device, dialog; device = Ext.create('Traccar.model.Device'); device.store = this.getView().getStore(); @@ -56,7 +56,7 @@ Ext.define('Traccar.view.DeviceController', { dialog.show(); }, - onEditClick: function() { + onEditClick: function () { var device, dialog; device = this.getView().getSelectionModel().getSelection()[0]; dialog = Ext.create('Traccar.view.DeviceDialog'); @@ -64,7 +64,7 @@ Ext.define('Traccar.view.DeviceController', { dialog.show(); }, - onRemoveClick: function() { + onRemoveClick: function () { var device = this.getView().getSelectionModel().getSelection()[0]; Ext.Msg.show({ title: strings.deviceDialog, @@ -74,7 +74,7 @@ Ext.define('Traccar.view.DeviceController', { yes: strings.sharedRemove, no: strings.sharedCancel }, - fn: function(btn) { + fn: function (btn) { var store; if (btn === 'yes') { store = Ext.getStore('Devices'); @@ -85,7 +85,7 @@ Ext.define('Traccar.view.DeviceController', { }); }, - onCommandClick: function() { + onCommandClick: function () { var device, command, dialog; device = this.getView().getSelectionModel().getSelection()[0]; command = Ext.create('Traccar.model.Command'); @@ -95,7 +95,7 @@ Ext.define('Traccar.view.DeviceController', { dialog.show(); }, - onSelectionChange: function(selected) { + onSelectionChange: function (selected) { var empty = selected.getCount() === 0; this.lookupReference('deviceEditButton').setDisabled(empty); this.lookupReference('deviceRemoveButton').setDisabled(empty); @@ -105,19 +105,19 @@ Ext.define('Traccar.view.DeviceController', { } }, - onUserClick: function() { + onUserClick: function () { var dialog = Ext.create('Traccar.view.user.UserDialog'); dialog.down('form').loadRecord(Traccar.app.getUser()); dialog.show(); }, - onServerClick: function() { + onServerClick: function () { var dialog = Ext.create('Traccar.view.ServerDialog'); dialog.down('form').loadRecord(Traccar.app.getServer()); dialog.show(); }, - onUsersClick: function() { + onUsersClick: function () { Ext.create('Ext.window.Window', { title: strings.settingsUsers, width: styles.windowWidth, @@ -130,7 +130,7 @@ Ext.define('Traccar.view.DeviceController', { }).show(); }, - selectReport: function(position) { + selectReport: function (position) { if (position !== undefined) { this.getView().getSelectionModel().deselectAll(); } |