File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/signals/signals/src/core/processor Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 `
You can’t perform that action at this time.
0 commit comments