We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9f98e1 commit 99e65a2Copy full SHA for 99e65a2
src/window.js
@@ -18,7 +18,9 @@ global.HTMLCanvasElement = global.HTMLCanvasElement || HTMLCanvasElement;
18
global.Canvas = global.Canvas || HTMLCanvasElement;
19
global.CanvasRenderingContext2D =
20
global.CanvasRenderingContext2D || CanvasRenderingContext2D;
21
-global.WebGLRenderingContext = global.WebGLRenderingContext || function() {};
+// This causes the cryptic error:
22
+// `Value is undefined, expected an Object`
23
+// global.WebGLRenderingContext = global.WebGLRenderingContext || function() {};
24
25
function checkEmitter() {
26
if (
0 commit comments