mirror of
https://github.com/alvierahman90/gronk.git
synced 2024-11-22 15:29:52 +00:00
9 lines
235 B
JavaScript
9 lines
235 B
JavaScript
|
'use strict';
|
||
|
|
||
|
const MANUAL_REDIRECT = document.getElementById('manual_redirect');
|
||
|
|
||
|
const newLocation = data[new URLSearchParams(window.location.search).get('uuid')];
|
||
|
|
||
|
MANUAL_REDIRECT.href = newLocation;
|
||
|
window.location = newLocation;
|