소스 검색

Issue #877: polyfill bugfix

cycle20 1 년 전
부모
커밋
010772d44e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/mol-util/polyfill.ts

+ 1 - 1
src/mol-util/polyfill.ts

@@ -27,7 +27,7 @@ if (typeof window !== 'undefined') {
     })();
 }
 
-if (typeof window.HTMLCanvasElement !== 'undefined' && !window.HTMLCanvasElement.prototype.toBlob) {
+if (typeof window !== 'undefined' && typeof window.HTMLCanvasElement !== 'undefined' && !window.HTMLCanvasElement.prototype.toBlob) {
     // http://code.google.com/p/chromium/issues/detail?id=67587#57
     Object.defineProperty(window.HTMLCanvasElement.prototype, 'toBlob', {