Bike pump updates

This commit is contained in:
Pieter Vander Vennet 2020-07-16 09:25:20 +02:00
parent 9e43be6a07
commit bb61f7777f
5 changed files with 95 additions and 36 deletions

View file

@ -1,23 +0,0 @@
import {TagRenderingOptions} from "../TagRendering";
import {UIEventSource} from "../../UI/UIEventSource";
import {Changes} from "../../Logic/Changes";
import {Tag} from "../../Logic/TagsFilter";
export class PumpManual extends TagRenderingOptions {
private static options = {
priority: 5,
question: "Is dit een manuele pomp?",
mappings: [
{k: new Tag("manual", "yes"), txt: "Manuele pomp"},
{k: new Tag("manual", "no"), txt: "Automatische pomp"}
]
}
constructor() {
super(PumpManual.options);
}
}