From a8a6d131d09411b44e6ea8aea8cf798c6c62b1f8 Mon Sep 17 00:00:00 2001 From: Jacek Kowalski <Jacek@jacekk.info> Date: Tue, 18 Dec 2018 23:31:16 +0000 Subject: [PATCH] Update OpenLayers to version 5.3.0 --- index.js | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/index.js b/index.js index 3a7e3f5..8780766 100644 --- a/index.js +++ b/index.js @@ -139,7 +139,9 @@ if(data.actual[i].status == 'STOPPING') { tr.className = 'success'; - status_cell.className = 'status-boarding'; + if (data.actual[i].actualRelativeTime <= 0) { + status_cell.className = 'status-boarding'; + } } else if(parseInt(delay) > 9) { tr.className = 'danger'; delay_cell.className = 'status-delayed'; @@ -400,6 +402,8 @@ setText(vehicle_data_style, '.vehicleData { display: table-cell; }') }); + updateVehicleInfo() + hash(); window.addEventListener('hashchange', hash); -- Gitblit v1.9.1