From 31e5ea00e17a8c11169753993df97e6d8fb191ab Mon Sep 17 00:00:00 2001 From: Jacek Kowalski <Jacek@jacekk.info> Date: Sat, 09 Feb 2019 17:31:01 +0000 Subject: [PATCH] Fix collapse button location on mobile displays --- common.js | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/common.js b/common.js index f238013..12021ce 100644 --- a/common.js +++ b/common.js @@ -117,7 +117,7 @@ function depotIdToVehicleId(depotId, typeHelper) { if(typeHelper) { for(var prop in vehicles_info) { - if(prop.substr(0,1) == type && vehicles_info[prop]['num'].substr(2) == depotId) { + if(prop.substr(0,1) == typeHelper && vehicles_info[prop]['num'].substr(2) == depotId) { return prop; } } -- Gitblit v1.9.1