Add minimal charging_stations theme

This commit is contained in:
Pieter Vander Vennet 2020-10-23 19:26:08 +02:00
parent 9c474dfb06
commit 80a5e8d342
6 changed files with 192 additions and 1 deletions

View file

@ -24,6 +24,7 @@ export class QueryParameters {
this.initialized = true;
if (window?.location?.search) {
console.log("Window.location.search is",window.location.search)
const params = window.location.search.substr(1).split("&");
for (const param of params) {
const kv = param.split("=");