소스 검색

define globalThis object if undefined (see #643)

Gildas 4 년 전
부모
커밋
cbe1300644
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      lib/single-file/processors/hooks/content/content-hooks-frames.js

+ 3 - 0
lib/single-file/processors/hooks/content/content-hooks-frames.js

@@ -122,6 +122,9 @@ function loadDeferredImagesResetZoomLevel(options) {
 }
 
 function injectedScript() {
+	if (typeof globalThis == "undefined") {
+		window.globalThis = window;
+	}
 	const console = globalThis.console;
 	const dispatchEvent = event => globalThis.dispatchEvent(event);
 	const CustomEvent = globalThis.CustomEvent;