MCPcopy Create free account
hub / github.com/MCSManager/MCSManager / sendIframeMsg

Function sendIframeMsg

frontend/src/components/IframeBox/config.ts:70–83  ·  view source on GitHub ↗
(
  iframe: Ref<HTMLIFrameElement | null>,
  event: Partial<IframeEvent>,
  result: any
)

Source from the content-addressed store, hash-verified

68}
69
70export function sendIframeMsg(
71 iframe: Ref<HTMLIFrameElement | null>,
72 event: Partial<IframeEvent>,
73 result: any
74) {
75 iframe.value?.contentWindow?.postMessage(
76 {
77 id: event.id,
78 source: event.source,
79 data: result
80 } as IframeEvent,
81 "*"
82 );
83}

Callers 1

iframeEventDispatchFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected