Improved www.ttss.krakow.pl
Jacek Kowalski
2019-03-25 0ba7498c8b7397c579a1c5ade8ad22bcabd1e5cf
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;
         }
      }