regenbogenkarte/ts/buttons.ts

19 lines
648 B
TypeScript
Raw Normal View History

import { NAVIGATE_TO_URI, NEW_TAB_URI } from "./config";
export const setupEmergencyButton = () => {
const btn = <HTMLButtonElement>document.getElementById("emergency-button");
btn?.addEventListener("click", () => {
// The order of these statements below matter. If we replace the location before opening
// the other URL, the "window.open" line would have no effect.
window.open(NEW_TAB_URI, "_blank");
location.replace(NAVIGATE_TO_URI);
});
};
2022-10-01 10:34:36 +00:00
export const setupResetButton = () => {
const btn = <HTMLButtonElement>document.getElementById("reset-button");
btn?.addEventListener("click", () => {
window.location.reload();
});
2022-10-01 12:44:35 +00:00
};