mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-17 00:54:39 -05:00
fix a thingy
This commit is contained in:
parent
27499decb3
commit
64ab0a6978
1 changed files with 17 additions and 0 deletions
17
css/app.js
17
css/app.js
|
@ -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
|
||||
const timeLinks = document.querySelectorAll('a[data-onclick="jump_to_time"]');
|
||||
timeLinks.forEach(link => {
|
||||
|
|
Loading…
Reference in a new issue