mirror of
https://github.com/openziti/zrok.git
synced 2024-11-07 08:44:14 +01:00
fix for chrome-based browsers and setting the client-side interstitial cookie
This commit is contained in:
parent
3283ad0cc0
commit
2cb3c1428a
@ -108,8 +108,10 @@
|
||||
<body>
|
||||
<script>
|
||||
function onClick() {
|
||||
let e=new Date; e.setTime(e.getTime()+6048e5);
|
||||
document.cookie = 'zrok_interstitial = 1; expires=${e}; path=/; SameSite=None';
|
||||
const d = new Date();
|
||||
d.setTime(d.getTime() + (7 * 24 * 60 * 60 * 1000));
|
||||
let expires = "expires=" + d.toUTCString();
|
||||
document.cookie = "zrok_interstitial=1;" + expires + ";path=/;SameSite=None';domain=" + window.location.hostname;
|
||||
window.location.reload();
|
||||
}
|
||||
</script>
|
||||
|
Loading…
Reference in New Issue
Block a user