Compare commits
3 commits
a273e784ee
...
4c58ecf2c9
Author | SHA1 | Date | |
---|---|---|---|
4c58ecf2c9 | |||
126643a91c | |||
5b7f330a9c |
2 changed files with 35 additions and 25 deletions
|
@ -1,6 +1,7 @@
|
||||||
on: [push]
|
on: [push]
|
||||||
jobs:
|
jobs:
|
||||||
job:
|
job:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
container:
|
container:
|
||||||
image: ${{vars.DOCKER}}debian:bookworm
|
image: ${{vars.DOCKER}}debian:bookworm
|
||||||
steps:
|
steps:
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// buttons
|
||||||
|
|
||||||
const buttons = ["item", "link", "swap"];
|
const buttons = ["item", "link", "swap"];
|
||||||
|
|
||||||
for (let button of buttons) {
|
for (let button of buttons) {
|
||||||
|
@ -6,31 +8,7 @@ for (let button of buttons) {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
const qa = document.getElementById("qa");
|
// theme
|
||||||
qa.style.cursor = atob("cG9pbnRlcg==");
|
|
||||||
const qa0 = atob("Lg==");
|
|
||||||
|
|
||||||
const qa1 = [
|
|
||||||
atob("Y3Y="),
|
|
||||||
].join(qa0);
|
|
||||||
const qa2 = document.createElement(atob("c3Bhbg=="));
|
|
||||||
qa2.className = atob("ZmEgZmEtYXQ=");
|
|
||||||
const qa3 = [
|
|
||||||
atob("bWFyYw=="),
|
|
||||||
atob("YmVuaW5jYQ=="),
|
|
||||||
atob("bGluaw=="),
|
|
||||||
].join(qa0);
|
|
||||||
const qa4 = atob("IA==")
|
|
||||||
|
|
||||||
for (let kg of [qa1, qa4, qa2, qa4, qa3]) {
|
|
||||||
qa.append(kg);
|
|
||||||
}
|
|
||||||
qa.addEventListener("click", () => {
|
|
||||||
window.location.href = [
|
|
||||||
atob("bWFpbHRv"),
|
|
||||||
[qa1, qa3].join(atob("QA==")),
|
|
||||||
].join(atob("Og=="));
|
|
||||||
});
|
|
||||||
|
|
||||||
let theme;
|
let theme;
|
||||||
|
|
||||||
|
@ -61,3 +39,34 @@ document.getElementById("theme").addEventListener("click", () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
theme_get();
|
theme_get();
|
||||||
|
|
||||||
|
//
|
||||||
|
|
||||||
|
const a = (t) => atob(`${t}=`);
|
||||||
|
const ab = (t) => atob(`${t}==`);
|
||||||
|
const qa = document.getElementById("qa");
|
||||||
|
|
||||||
|
qa.style.cursor = ab("cG9pbnRlcg");
|
||||||
|
const qa0 = ab("Lg");
|
||||||
|
|
||||||
|
const qa1 = [
|
||||||
|
a("Y3Y"),
|
||||||
|
].join(qa0);
|
||||||
|
const qa2 = document.createElement(ab("c3Bhbg"));
|
||||||
|
qa2.className = a("ZmEgZmEtYXQ");
|
||||||
|
const qa3 = [
|
||||||
|
ab("bWFyYw"),
|
||||||
|
ab("YmVuaW5jYQ"),
|
||||||
|
ab("bGluaw"),
|
||||||
|
].join(qa0);
|
||||||
|
const qa4 = ab("IA")
|
||||||
|
|
||||||
|
for (let kg of [qa1, qa4, qa2, qa4, qa3]) {
|
||||||
|
qa.append(kg);
|
||||||
|
}
|
||||||
|
qa.addEventListener("click", () => {
|
||||||
|
window.location.href = [
|
||||||
|
atob("bWFpbHRv"),
|
||||||
|
[qa1, qa3].join(ab("QA")),
|
||||||
|
].join(ab("Og"));
|
||||||
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue