1
Fork 0

fix a thingy

This commit is contained in:
Ashley 2023-06-10 14:44:04 +00:00
parent 27499decb3
commit 64ab0a6978

View file

@ -92,6 +92,23 @@ links.forEach(link => {
}); });
}); });
function jumpToTime(e) {
e.preventDefault();
const link = e.target;
const video = document.getElementById('video');
const time = link.dataset.jumpTime;
video.currentTime = time;
window.location.hash = 'top'; // Add #video to the URL
setTimeout(() => {
history.replaceState(null, null, ' '); // Remove #video after 1 second
}, 250);
}
// Handle click events for time-based links // Handle click events for time-based links
const timeLinks = document.querySelectorAll('a[data-onclick="jump_to_time"]'); const timeLinks = document.querySelectorAll('a[data-onclick="jump_to_time"]');
timeLinks.forEach(link => { timeLinks.forEach(link => {