Jelajahi Sumber

Issue #877: polyfill bugfix

cycle20 1 tahun lalu
induk
melakukan
010772d44e
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  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', {