Skip to content

Commit 98ff882

Browse files
committed
wip
1 parent f606fd1 commit 98ff882

File tree

1 file changed

+2
-2
lines changed
  • packages/signals/signals/src/core/processor

1 file changed

+2
-2
lines changed

packages/signals/signals/src/core/processor/sandbox.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ export class IframeSandbox implements SignalSandbox {
269269
doc.write(this.getIframeHTML(processSignalFn))
270270
doc.close()
271271

272-
const runtimeJs = this.getIframeRuntimeJSForBlob(processSignalFn)
272+
const runtimeJs = this.getIframeJS(processSignalFn)
273273
const blob = new Blob([runtimeJs], { type: 'application/javascript' })
274274
const runtimeScript = doc.createElement('script')
275275
runtimeScript.src = URL.createObjectURL(blob)
@@ -306,7 +306,7 @@ export class IframeSandbox implements SignalSandbox {
306306
].join(',')
307307
}
308308

309-
private getIframeRuntimeJSForBlob(processSignalFn?: string): string {
309+
private getIframeJS(processSignalFn?: string): string {
310310
// External signal processor script
311311
// Inject runtime via Blob (CSP-safe)
312312
return `

0 commit comments

Comments
 (0)