Self-hosted, federated location sharing app and server that prioritizes user privacy and security
end-to-end-encryption location-sharing privacy self-hosted federated

Adds tools.ts, which has the goto function.

The goto(newLocation: string) function just changes which page the current page is so it's a little easier to use.

This function is used in the last two commits, I just forgot to add it lol :)

kishka.cc fed44e4a 93cd4897

verified
Changed files
+4
app
src
utils
+4
app/src/utils/tools.ts
··· 1 + export function goto(newLocation: string) { 2 + window.location.href = 3 + "/src/" + newLocation + "-page/" + newLocation + ".html"; 4 + }