aboutsummaryrefslogtreecommitdiff
path: root/src/component/VideoAuto.astro
diff options
context:
space:
mode:
Diffstat (limited to 'src/component/VideoAuto.astro')
-rw-r--r--src/component/VideoAuto.astro1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/component/VideoAuto.astro b/src/component/VideoAuto.astro
index bcf23a3..abb9c68 100644
--- a/src/component/VideoAuto.astro
+++ b/src/component/VideoAuto.astro
@@ -20,7 +20,6 @@ const { src, thumb } = Astro.props;
const source = document.createElement("source");
source.src = img.getAttribute("data-video");
video.appendChild(source);
- console.log(img);
parent.insertBefore(video, img);
parent.removeChild(img);
});