diff options
author | Anton Tananaev <anton.tananaev@gmail.com> | 2015-11-08 14:33:48 +1300 |
---|---|---|
committer | Anton Tananaev <anton.tananaev@gmail.com> | 2015-11-08 14:33:48 +1300 |
commit | 38134454c55b4a36f7c82686e3a29a9610050e6e (patch) | |
tree | 9cc0cb41713c1d9b17f1df17c41953a938f010be /web/app/view/Map.js | |
parent | 30f1a770f867de05a89ee6073dc002137d5e4512 (diff) | |
download | trackermap-server-38134454c55b4a36f7c82686e3a29a9610050e6e.tar.gz trackermap-server-38134454c55b4a36f7c82686e3a29a9610050e6e.tar.bz2 trackermap-server-38134454c55b4a36f7c82686e3a29a9610050e6e.zip |
Fix JavaScript check style issues
Diffstat (limited to 'web/app/view/Map.js')
-rw-r--r-- | web/app/view/Map.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/app/view/Map.js b/web/app/view/Map.js index 4358b64ac..8df5db1d9 100644 --- a/web/app/view/Map.js +++ b/web/app/view/Map.js @@ -96,7 +96,7 @@ Ext.define('Traccar.view.Map', { view: this.mapView }); - this.map.on('click', function(e) { + this.map.on('click', function (e) { this.map.forEachFeatureAtPixel(e.pixel, function (feature, layer) { this.fireEvent('selectFeature', feature); }, this); |