diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2016-11-04 08:03:57 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2016-11-04 08:03:57 +1300 |
commit | 41e50383671843823a9c41d11b02a8cd9165e0b0 (patch) | |
tree | dbe523d07c683fcf97baa176651f6ea5a66e6233 /web/app/view/DevicesController.js | |
parent | 9adb468ca86dc1b40c29c692a3710426174ea5f9 (diff) | |
download | trackermap-web-41e50383671843823a9c41d11b02a8cd9165e0b0.tar.gz trackermap-web-41e50383671843823a9c41d11b02a8cd9165e0b0.tar.bz2 trackermap-web-41e50383671843823a9c41d11b02a8cd9165e0b0.zip |
Move some buttons to map
Diffstat (limited to 'web/app/view/DevicesController.js')
-rw-r--r-- | web/app/view/DevicesController.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/web/app/view/DevicesController.js b/web/app/view/DevicesController.js index 731cbeda..aa8e7886 100644 --- a/web/app/view/DevicesController.js +++ b/web/app/view/DevicesController.js @@ -124,7 +124,9 @@ Ext.define('Traccar.view.DevicesController', { var device; if (pressed) { device = this.getView().getSelectionModel().getSelection()[0]; - this.fireEvent('selectdevice', device, true); + if (device) { + this.fireEvent('selectdevice', device, true); + } } }, |