Skip to content

Commit

Permalink
Fixing the broken video urls
Browse files Browse the repository at this point in the history
  • Loading branch information
su-docker committed Aug 5, 2024
1 parent c57a145 commit 5e9e61c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion assets/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
const mobileBreakpoint = 768;
if (window.innerWidth < mobileBreakpoint) {
document.querySelector(".demo-video video").src =
"/assets/videos/vidura-demo-mobile.mp4";
"assets/videos/vidura-demo-mobile.mp4";
}

// Add click handlers for contact us form
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ <h1>
powered by VIDURA
</p>
<video
src="/assets/videos/vidura-demo.mp4"
src="assets/videos/vidura-demo.mp4"
autoplay
muted
loop
Expand Down

0 comments on commit 5e9e61c

Please sign in to comment.