Improve documentation for shortcuts

This commit is contained in:
2024-08-14 19:58:25 +02:00
parent 3d128a2960
commit 1382c01a14
9 changed files with 147 additions and 74 deletions

View File

@@ -45,6 +45,11 @@ export const toggle_playback = () => {
viewer.toggle_playback()
}
}
export const seek = delta => {
if (viewer && viewer.seek) {
viewer.seek(delta)
}
}
</script>
{#if viewer_type === ""}