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 {
269
269
doc . write ( this . getIframeHTML ( processSignalFn ) )
270
270
doc . close ( )
271
271
272
- const runtimeJs = this . getIframeRuntimeJSForBlob ( processSignalFn )
272
+ const runtimeJs = this . getIframeJS ( processSignalFn )
273
273
const blob = new Blob ( [ runtimeJs ] , { type : 'application/javascript' } )
274
274
const runtimeScript = doc . createElement ( 'script' )
275
275
runtimeScript . src = URL . createObjectURL ( blob )
@@ -306,7 +306,7 @@ export class IframeSandbox implements SignalSandbox {
306
306
] . join ( ',' )
307
307
}
308
308
309
- private getIframeRuntimeJSForBlob ( processSignalFn ?: string ) : string {
309
+ private getIframeJS ( processSignalFn ?: string ) : string {
310
310
// External signal processor script
311
311
// Inject runtime via Blob (CSP-safe)
312
312
return `
You can’t perform that action at this time.
0 commit comments