blob: c8529a25ca594eb1ae88e776a4c1c763a0bcf7dd (
plain) (
blame)
1
2
3
4
5
6
|
document.addEventListener('DOMContentLoaded', () => {
const u = location.href.replace('proxy.html', 'index.html');
const a = document.createElement('iframe');
a.src = u;
document.body.appendChild(a);
});
|