From d72a15fd1b54ceed4cc6c5a391e34a051a6c7bf1 Mon Sep 17 00:00:00 2001 From: Yanzhen Yu Date: Wed, 1 Apr 2026 12:00:00 +0800 Subject: [PATCH] expose iframe as public property --- src/replay/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/replay/index.ts b/src/replay/index.ts index f496e4ce..0faf6fe6 100644 --- a/src/replay/index.ts +++ b/src/replay/index.ts @@ -35,13 +35,13 @@ const REPLAY_CONSOLE_PREFIX = '[replayer]'; export class Replayer { public wrapper: HTMLDivElement; + public iframe: HTMLIFrameElement; public timer: Timer; private events: eventWithTime[] = []; private config: playerConfig; - private iframe: HTMLIFrameElement; private mouse: HTMLDivElement; private emitter: mitt.Emitter = mitt();