mirror of
https://github.com/Queer-Lexikon/regenbogenkarte
synced 2024-11-22 20:23:13 +00:00
12 lines
458 B
TypeScript
12 lines
458 B
TypeScript
|
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);
|
||
|
});
|
||
|
};
|