From e82356cfbcd8728b46beaa27aaf4c614da5797d6 Mon Sep 17 00:00:00 2001 From: Jacek Kowalski <Jacek@jacekk.info> Date: Sat, 06 Jul 2019 14:58:25 +0000 Subject: [PATCH] Make Deferred a class --- map.js | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/map.js b/map.js index df297da..5752841 100644 --- a/map.js +++ b/map.js @@ -94,7 +94,7 @@ this._content = document.createElement('div'); this._element.appendChild(this._content); -}; +} Panel.prototype = { _element: null, _hide: null, @@ -591,6 +591,8 @@ } // Vehicle else if(ttss_types.includes(type)) { + styleVehicle(feature, true); + var span = displayVehicle(feature.get('vehicle_type')); additional = document.createElement('p'); @@ -606,8 +608,6 @@ vehicleTable(feature, tbody); vehiclePath(feature); - - styleVehicle(feature, true); } // Stop or stop point else if(['s', 'p'].includes(type)) { @@ -709,7 +709,7 @@ function listFeatures(features) { var div = document.createElement('div'); - if(features.length == 0) { + if(features.length === 0) { addParaWithText(div, lang.no_results); return div; } -- Gitblit v1.9.1