mirror of
https://github.com/wah-su/wahs.wah.su.git
synced 2025-04-05 15:54:37 +00:00
remove console.log
This commit is contained in:
parent
1c7e10bb8a
commit
473daa482f
4 changed files with 1 additions and 60 deletions
|
@ -153,7 +153,7 @@ function generateHTMLFile(
|
||||||
</Base>
|
</Base>
|
||||||
);
|
);
|
||||||
fs.writeFileSync(output, `<!DOCTYPE html>${html}`);
|
fs.writeFileSync(output, `<!DOCTYPE html>${html}`);
|
||||||
console.log(`Generated: ${output}`);
|
log.info(`Generated: ${output}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
fs.cpSync("src/static", "out/static", { recursive: true });
|
fs.cpSync("src/static", "out/static", { recursive: true });
|
||||||
|
|
|
@ -170,7 +170,6 @@ function _tmp_loadNav(url, iid) {
|
||||||
unfavoriteButton.forEach((item) => item.classList.add("hidden"));
|
unfavoriteButton.forEach((item) => item.classList.add("hidden"));
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
console.log(isFav)
|
|
||||||
if (!isFav) {
|
if (!isFav) {
|
||||||
favoriteButton.forEach((item) => item.classList.remove("hidden"));
|
favoriteButton.forEach((item) => item.classList.remove("hidden"));
|
||||||
} else {
|
} else {
|
||||||
|
|
|
@ -90,7 +90,6 @@ async function populateIndex() {
|
||||||
pl
|
pl
|
||||||
);
|
);
|
||||||
}, 250);
|
}, 250);
|
||||||
console.log("video not supported");
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
if (favs.length >= 11) {
|
if (favs.length >= 11) {
|
||||||
|
|
|
@ -521,21 +521,12 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@layer utilities {
|
@layer utilities {
|
||||||
.pointer-events-auto {
|
|
||||||
pointer-events: auto;
|
|
||||||
}
|
|
||||||
.pointer-events-none {
|
|
||||||
pointer-events: none;
|
|
||||||
}
|
|
||||||
.collapse {
|
.collapse {
|
||||||
visibility: collapse;
|
visibility: collapse;
|
||||||
}
|
}
|
||||||
.invisible {
|
.invisible {
|
||||||
visibility: hidden;
|
visibility: hidden;
|
||||||
}
|
}
|
||||||
.visible {
|
|
||||||
visibility: visible;
|
|
||||||
}
|
|
||||||
.absolute {
|
.absolute {
|
||||||
position: absolute;
|
position: absolute;
|
||||||
}
|
}
|
||||||
|
@ -563,42 +554,15 @@
|
||||||
.right-2 {
|
.right-2 {
|
||||||
right: calc(var(--spacing) * 2);
|
right: calc(var(--spacing) * 2);
|
||||||
}
|
}
|
||||||
.right-8 {
|
|
||||||
right: calc(var(--spacing) * 8);
|
|
||||||
}
|
|
||||||
.bottom-2 {
|
|
||||||
bottom: calc(var(--spacing) * 2);
|
|
||||||
}
|
|
||||||
.bottom-8 {
|
|
||||||
bottom: calc(var(--spacing) * 8);
|
|
||||||
}
|
|
||||||
.left-0 {
|
.left-0 {
|
||||||
left: calc(var(--spacing) * 0);
|
left: calc(var(--spacing) * 0);
|
||||||
}
|
}
|
||||||
.z-4 {
|
|
||||||
z-index: 4;
|
|
||||||
}
|
|
||||||
.z-5 {
|
|
||||||
z-index: 5;
|
|
||||||
}
|
|
||||||
.z-10 {
|
.z-10 {
|
||||||
z-index: 10;
|
z-index: 10;
|
||||||
}
|
}
|
||||||
.z-\[3\] {
|
.z-\[3\] {
|
||||||
z-index: 3;
|
z-index: 3;
|
||||||
}
|
}
|
||||||
.z-\[4\] {
|
|
||||||
z-index: 4;
|
|
||||||
}
|
|
||||||
.z-\[10\] {
|
|
||||||
z-index: 10;
|
|
||||||
}
|
|
||||||
.z-\[15\] {
|
|
||||||
z-index: 15;
|
|
||||||
}
|
|
||||||
.z-\[50\] {
|
|
||||||
z-index: 50;
|
|
||||||
}
|
|
||||||
.\[grid-column\:span_2\] {
|
.\[grid-column\:span_2\] {
|
||||||
grid-column: span 2;
|
grid-column: span 2;
|
||||||
}
|
}
|
||||||
|
@ -683,9 +647,6 @@
|
||||||
.h-8 {
|
.h-8 {
|
||||||
height: calc(var(--spacing) * 8);
|
height: calc(var(--spacing) * 8);
|
||||||
}
|
}
|
||||||
.h-12 {
|
|
||||||
height: calc(var(--spacing) * 12);
|
|
||||||
}
|
|
||||||
.h-14 {
|
.h-14 {
|
||||||
height: calc(var(--spacing) * 14);
|
height: calc(var(--spacing) * 14);
|
||||||
}
|
}
|
||||||
|
@ -710,9 +671,6 @@
|
||||||
.w-8 {
|
.w-8 {
|
||||||
width: calc(var(--spacing) * 8);
|
width: calc(var(--spacing) * 8);
|
||||||
}
|
}
|
||||||
.w-12 {
|
|
||||||
width: calc(var(--spacing) * 12);
|
|
||||||
}
|
|
||||||
.w-14 {
|
.w-14 {
|
||||||
width: calc(var(--spacing) * 14);
|
width: calc(var(--spacing) * 14);
|
||||||
}
|
}
|
||||||
|
@ -809,9 +767,6 @@
|
||||||
.bg-gray-400\/50 {
|
.bg-gray-400\/50 {
|
||||||
background-color: color-mix(in oklab, var(--color-gray-400) 50%, transparent);
|
background-color: color-mix(in oklab, var(--color-gray-400) 50%, transparent);
|
||||||
}
|
}
|
||||||
.bg-gray-600 {
|
|
||||||
background-color: var(--color-gray-600);
|
|
||||||
}
|
|
||||||
.bg-orange-800 {
|
.bg-orange-800 {
|
||||||
background-color: var(--color-orange-800);
|
background-color: var(--color-orange-800);
|
||||||
}
|
}
|
||||||
|
@ -868,27 +823,15 @@
|
||||||
.text-\[\#faebeb\] {
|
.text-\[\#faebeb\] {
|
||||||
color: #faebeb;
|
color: #faebeb;
|
||||||
}
|
}
|
||||||
.text-gray-100 {
|
|
||||||
color: var(--color-gray-100);
|
|
||||||
}
|
|
||||||
.text-gray-200 {
|
.text-gray-200 {
|
||||||
color: var(--color-gray-200);
|
color: var(--color-gray-200);
|
||||||
}
|
}
|
||||||
.text-gray-200\/75 {
|
.text-gray-200\/75 {
|
||||||
color: color-mix(in oklab, var(--color-gray-200) 75%, transparent);
|
color: color-mix(in oklab, var(--color-gray-200) 75%, transparent);
|
||||||
}
|
}
|
||||||
.text-gray-300 {
|
|
||||||
color: var(--color-gray-300);
|
|
||||||
}
|
|
||||||
.text-gray-500 {
|
|
||||||
color: var(--color-gray-500);
|
|
||||||
}
|
|
||||||
.text-orange-400 {
|
.text-orange-400 {
|
||||||
color: var(--color-orange-400);
|
color: var(--color-orange-400);
|
||||||
}
|
}
|
||||||
.text-slate-900 {
|
|
||||||
color: var(--color-slate-900);
|
|
||||||
}
|
|
||||||
.text-white {
|
.text-white {
|
||||||
color: var(--color-white);
|
color: var(--color-white);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue