From 1eea9a4798620620e54411a061c483d226bbab1c Mon Sep 17 00:00:00 2001 From: Jacek Kowalski <Jacek@jacekk.info> Date: Wed, 10 Apr 2019 22:18:36 +0000 Subject: [PATCH] When changing language file, keep the version tag --- common.js | 13 ++++++++----- 1 files changed, 8 insertions(+), 5 deletions(-) diff --git a/common.js b/common.js index f238013..6733d46 100644 --- a/common.js +++ b/common.js @@ -1,9 +1,12 @@ "use strict"; -//var ttss_trams_base = 'http://www.ttss.krakow.pl/internetservice'; -var ttss_trams_base = 'proxy_tram.php'; -//var ttss_buses_base = 'http://91.223.13.70/internetservice'; -var ttss_buses_base = 'proxy_bus.php'; +var ttss_urls = { + t: 'proxy_tram.php', + // t: 'http://www.ttss.krakow.pl/internetservice', + b: 'proxy_bus.php', + // b: 'http://91.223.13.70/internetservice', +}; +var ttss_types = ['t', 'b']; // Special directions var special_directions = { @@ -117,7 +120,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