From ea09b2e85e014d438084a454fae7c0cce57d9773 Mon Sep 17 00:00:00 2001 From: Abyss777 Date: Fri, 2 Dec 2016 09:29:08 +0700 Subject: - Remove single event - Redo ol.extent calculation with less compares - Uncomment url manipulation --- web/app/view/ReportController.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'web/app/view/ReportController.js') diff --git a/web/app/view/ReportController.js b/web/app/view/ReportController.js index 2ad2bdda..1f3f3a2a 100644 --- a/web/app/view/ReportController.js +++ b/web/app/view/ReportController.js @@ -214,8 +214,7 @@ Ext.define('Traccar.view.ReportController', { callback: function (records, operation, success) { if (success) { Ext.getStore('ReportRoute').add(records); - if (this.singleEvent && records.length > 0) { - this.singleEvent = false; + if (records.length === 1) { this.fireEvent('selectreport', records[0], false); } } @@ -225,7 +224,6 @@ Ext.define('Traccar.view.ReportController', { }, showSingleEvent: function (eventId) { - this.singleEvent = true; this.lookupReference('reportTypeField').setValue('events'); Ext.getStore('Events').load({ id: eventId, -- cgit v1.2.3