removed legend bgcolor select options and set color black, removed encoding from venue desc

This commit is contained in:
zino
2021-05-31 16:08:40 +02:00
parent f839dba4dd
commit 54af9c42f4
8 changed files with 6 additions and 3277 deletions

View File

@@ -29,7 +29,7 @@ export function changeSiteTitle(): void {
export function setEventInfo(inEventInfo: I.EventInfo): void {
const inputsWithValue = config.state.inputsWithValue!;
const desc: string = Utils.encodeCP850DecodeUTF8(inEventInfo.desc[0]);
const location: string = Utils.encodeCP850DecodeUTF8(inputsWithValue.venueLocation);
const location: string = inputsWithValue.venueLocation;
jQuery("#eventInfoDesc span.fl-heading-text")[0].childNodes[0].textContent = desc;
jQuery("#eventInfoLocation p")[0].childNodes[0].textContent = location;