(function() {
const $ = i => document.getElementById(i),
w = m => new Promise(r => setTimeout(r, m)),
v = (l, t) => l.dispatchEvent(new Event(t, {bubbles: 1}));
async function f() {
let s = $('t-slider'), t = $('t-task'), c = $('qrCaptchaContainer'), d = $('t-frame-display'), i = 0, a = 0;
if (!s || !t || !c) return;
Object.assign(c.style, {height: '230px', overflow: 'visible'});
if (!d) {
d = Object.assign(document.createElement('div'), {id: 't-frame-display'});
d.style = "display:flex;justify-content:center;gap:5px;margin-top:10px;min-height:55px";
s.after(d);
}
Comment too long. Click here to view the full text.