Bring back comments

This commit is contained in:
Isra 2025-11-12 13:26:07 +08:00
parent d4f705c599
commit 2718de34eb
2 changed files with 4 additions and 1 deletions

View file

@ -428,15 +428,18 @@ input[type="range"].styled-slider.slider-progress::-ms-fill-lower {
@apply brightness-[500];
}
/* Image fade-in on load */
img:not(.no-fade):not([src=""]) {
opacity: 0;
transition: opacity 0.8s ease-in-out;
}
/* Fade in when image has loaded class */
img.loaded:not(.no-fade) {
opacity: 1;
}
/* For images that are already cached/loaded, show them immediately */
img[complete]:not(.no-fade):not([src=""]) {
opacity: 1;
}

View file

@ -411,7 +411,7 @@ export function CaptionsView({
};
try {
await navigator.clipboard.writeText(JSON.stringify(copyData, null, 2));
await navigator.clipboard.writeText(JSON.stringify(copyData));
// Could add a toast notification here if needed
} catch (err) {
console.error("Failed to copy subtitle data:", err);