Explorar o código

Issue #877: polyfill bugfix

cycle20 hai 1 ano
pai
achega
010772d44e
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  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', {