aboutsummaryrefslogtreecommitdiff
path: root/web/app/view/map/MapMarkerController.js
diff options
context:
space:
mode:
authorAbyss777 <abyss@fox5.ru>2017-07-28 08:58:54 +0500
committerAbyss777 <abyss@fox5.ru>2017-07-28 08:58:54 +0500
commita7bfd5431b73b5d634b769e64483e81815364bca (patch)
treefb5d5f35d0c7fc3510f02137def18a27be4d23e4 /web/app/view/map/MapMarkerController.js
parent352159c53b862a78cead3c1447d14eca28bd9c58 (diff)
downloadetbsa-traccar-web-a7bfd5431b73b5d634b769e64483e81815364bca.tar.gz
etbsa-traccar-web-a7bfd5431b73b5d634b769e64483e81815364bca.tar.bz2
etbsa-traccar-web-a7bfd5431b73b5d634b769e64483e81815364bca.zip
Do not show geofenceId if it is unknown
Diffstat (limited to 'web/app/view/map/MapMarkerController.js')
-rw-r--r--web/app/view/map/MapMarkerController.js7
1 files changed, 4 insertions, 3 deletions
diff --git a/web/app/view/map/MapMarkerController.js b/web/app/view/map/MapMarkerController.js
index 2f1d91e..df4029d 100644
--- a/web/app/view/map/MapMarkerController.js
+++ b/web/app/view/map/MapMarkerController.js
@@ -495,11 +495,12 @@ Ext.define('Traccar.view.map.MapMarkerController', {
},
selectEvent: function (position) {
+ var marker;
this.fireEvent('deselectfeature');
if (position) {
- var maker = this.addReportMarker(position);
- maker.set('event', true);
- this.selectMarker(maker, true);
+ marker = this.addReportMarker(position);
+ marker.set('event', true);
+ this.selectMarker(marker, true);
} else if (this.selectedMarker && this.selectedMarker.get('event')) {
this.selectMarker(null, false);
}