typo fix, deletes unused e prop in ScrollerVideo
This commit is contained in:
parent
01b94018dc
commit
8e0a210dd6
2 changed files with 1 additions and 2 deletions
|
|
@ -253,7 +253,6 @@ endTime: 0.3 # When to stop showing the headline
|
|||
```svelte
|
||||
<script lang="ts">
|
||||
import { assets } from '$app/paths'; // 👈 If using in the graphics kit...
|
||||
=
|
||||
import {
|
||||
Headline,
|
||||
GraphicBlock,
|
||||
|
|
|
|||
|
|
@ -151,7 +151,7 @@
|
|||
// add user defined onReady
|
||||
onReady();
|
||||
|
||||
window?.addEventListener('scroll', (e: Event) => {
|
||||
window?.addEventListener('scroll', () => {
|
||||
if (
|
||||
embeddedContainer &&
|
||||
embeddedContainer.getBoundingClientRect().top <
|
||||
|
|
|
|||
Loading…
Reference in a new issue