Add UI flow to generate flyers

This commit is contained in:
Pieter Vander Vennet 2022-09-17 03:24:01 +02:00
parent bc86db2815
commit 9c961d32b3
10 changed files with 814 additions and 624 deletions

View file

@ -108,4 +108,11 @@ export class QueryParameters {
history.replaceState(null, "", "?" + parts.join("&") + Hash.Current())
}
}
static ClearAll() {
for (const name in QueryParameters.knownSources) {
QueryParameters.knownSources[name].setData("")
}
QueryParameters._wasInitialized.clear()
}
}