{#if loadingTimeline}
{:else}
startDragging("left")} on:blur={stopDragging} on:keydown={(e) => { if (e.key === 'ArrowLeft' || e.key == 'ArrowRight') { startDragging("left"); } }} style="left: {leftHandlePosition}%;" />
{#each thumbnails as thumbnail, i (i)}
{/each}
startDragging("right")} on:blur={stopDragging} on:keydown={(e) => { if (e.key === 'ArrowLeft' || e.key == 'ArrowRight') { startDragging("right"); } }} style="left: {rightHandlePosition}%;" />
{/if}