mirror of
https://github.com/smartyellow/status.git
synced 2024-11-22 10:37:34 +01:00
17 lines
333 B
Svelte
17 lines
333 B
Svelte
<script>
|
|
import { createEventDispatcher, onMount } from 'svelte';
|
|
|
|
const dispatch = createEventDispatcher();
|
|
|
|
onMount(() => {
|
|
let url = window.location.href;
|
|
if (!url.endsWith('/')) {
|
|
url += '/';
|
|
}
|
|
url += 'status/dashboard';
|
|
|
|
window.open(url, '_blank').focus();
|
|
dispatch('close');
|
|
});
|
|
</script>
|