Skip to content

Commit

Permalink
fixup! chore(deps-dev): bump prettier from 2.8.8 to 3.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bwallberg committed Dec 15, 2023
1 parent 3dda259 commit 913b73a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Binary file not shown.
Binary file added .yarn/cache/fsevents-patch-2882183fbf-8.zip
Binary file not shown.
4 changes: 2 additions & 2 deletions public/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<!DOCTYPE html>
<!doctype html>
<head>
<style>
html {
Expand Down Expand Up @@ -76,7 +76,7 @@
Object.values(MediaEvent).forEach((evt) =>
videoElement.addEventListener(evt, () => {
console.log("%cNativeEv: %s", "color:#cf1313;font-weight:bold;", evt);
})
}),
);

getMediaEventFilter({
Expand Down
4 changes: 2 additions & 2 deletions src/media-event-filter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -453,15 +453,15 @@ export const getMediaEventFilter = ({
];

EventHandlerPairs.forEach(([event, handler]) =>
videoElement.addEventListener(event, handler)
videoElement.addEventListener(event, handler),
);

return {
teardown: () => {
clearRatechangeBufferTimeout();

EventHandlerPairs.forEach(([event, handler]) =>
videoElement.removeEventListener(event, handler)
videoElement.removeEventListener(event, handler),
);
},
};
Expand Down

0 comments on commit 913b73a

Please sign in to comment.