Skip to content

Commit

Permalink
squash!
Browse files Browse the repository at this point in the history
  • Loading branch information
NikolaRHristov committed Aug 31, 2023
1 parent d95c6d2 commit 82fd058
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 20 deletions.
44 changes: 25 additions & 19 deletions Source/Script/Ta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,25 +31,31 @@ const refresh = async () => {
});
}

setTimeout(async () => {
const focus = await DOM.getElement(".js-column-back");

focus.forEach((el) => {
el?.click();
});

await refresh();
}, 24000 + Math.floor(Math.random() * length * 1000));

setTimeout(async () => {
const focus = await DOM.getElement(".column-type-icon");

focus.forEach((el) => {
el?.click();
});

await refresh();
}, 24000 + Math.floor(Math.random() * length * 1000));
setTimeout(
async () => {
const focus = await DOM.getElement(".js-column-back");

focus.forEach((el) => {
el?.click();
});

await refresh();
},
24000 + Math.floor(Math.random() * length * 1000)
);

setTimeout(
async () => {
const focus = await DOM.getElement(".column-type-icon");

focus.forEach((el) => {
el?.click();
});

await refresh();
},
24000 + Math.floor(Math.random() * length * 1000)
);
});
}, 30000);
};
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>

<html lang="en">
<head></head>
Expand Down

0 comments on commit 82fd058

Please sign in to comment.