diff options
-rw-r--r-- | web/app/view/command/CommandDialogController.js | 11 | ||||
-rw-r--r-- | web/l10n/en.js | 1 |
2 files changed, 7 insertions, 5 deletions
diff --git a/web/app/view/command/CommandDialogController.js b/web/app/view/command/CommandDialogController.js index 6dfb322f5..8c13ea1e1 100644 --- a/web/app/view/command/CommandDialogController.js +++ b/web/app/view/command/CommandDialogController.js @@ -24,14 +24,15 @@ Ext.define('Traccar.view.command.CommandDialogController', { }, onSendClick: function(button) { - var attributes; - var form = button.up('window').down('form'); + var attributes, value, record, form; + + form = button.up('window').down('form'); form.updateRecord(); - var record = form.getRecord(); + record = form.getRecord(); if (record.get('type') === 'positionPeriodic') { attributes = this.lookupReference('paramPositionPeriodic'); - var value = attributes.down('numberfield[name="frequency"]').getValue(); + value = attributes.down('numberfield[name="frequency"]').getValue(); value *= attributes.down('combobox[name="unit"]').getValue(); record.set('attributes', { @@ -49,8 +50,8 @@ Ext.define('Traccar.view.command.CommandDialogController', { onSendReturn: function(options, success, response) { if (Traccar.ErrorManager.check(success, response)) { + Ext.toast(strings.commandSent); this.closeView(); - //TODO toast Ext.toast(strings.loginCreated); } }, diff --git a/web/l10n/en.js b/web/l10n/en.js index 436932a72..e69751cb3 100644 --- a/web/l10n/en.js +++ b/web/l10n/en.js @@ -79,6 +79,7 @@ var strings = { commandTitle: 'Command', commandSend: 'Send', commandType: 'Type', + commandSent: 'Command has been sent', commandPositionPeriodic: 'Periodic Reporting', commandPositionStop: 'Stop Reporting', commandEngineStop: 'Engine Stop', |