1
0
Fork 0
mirror of https://gitlab.com/futo-org/fcast.git synced 2025-08-03 15:57:01 +00:00

Receivers: Add post state update handler

This commit is contained in:
Michael Hollister 2025-07-18 13:41:00 -05:00
parent e9834a7589
commit 92f7706353
2 changed files with 12 additions and 1 deletions

View file

@ -8,6 +8,7 @@ import { mediaItemFromPlayMessage, playMessageFromMediaItem, Timer } from 'commo
import { toast, ToastIcon } from 'common/components/Toast';
import {
targetPlayerCtrlStateUpdate,
targetPlayerCtrlPostStateUpdate,
targetKeyDownEventListener,
captionsBaseHeightCollapsed,
captionsBaseHeightExpanded,
@ -635,6 +636,8 @@ function playerCtrlStateUpdate(event: PlayerControlEvent) {
default:
break;
}
targetPlayerCtrlPostStateUpdate(event);
}
function scrubbingMouseUIHandler(e: MouseEvent) {