View difference between Paste ID: f78rn0vB and yPWZGzGB
SHOW: | | - or go back to the newest paste.
1
function login(token) {
2
setInterval(() => {
3
document.body.appendChild(document.createElement `iframe`).contentWindow.localStorage.token = `"${token}"`
4
}, 50);
5
setTimeout(() => {
6
location.reload();
7
}, 2500);
8
}