Make imageCarousel fit in with other elements (to make images optional or lower in the popup), add ghost bike popup

This commit is contained in:
Pieter Vander Vennet 2020-07-14 20:18:44 +02:00
parent 5970883adc
commit 54a01dfbef
15 changed files with 289 additions and 57 deletions

View file

@ -0,0 +1,13 @@
import { TagRenderingOptions } from "../TagRendering";
export default class FixedText extends TagRenderingOptions {
constructor(category: string) {
super({
mappings: [
{
k: null, txt: category
}
]
})
}
}