summaryrefslogtreecommitdiff
path: root/platform
diff options
context:
space:
mode:
Diffstat (limited to 'platform')
-rw-r--r--platform/javascript/engine.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/javascript/engine.js b/platform/javascript/engine.js
index 8f22e41660..e6fb48d0d2 100644
--- a/platform/javascript/engine.js
+++ b/platform/javascript/engine.js
@@ -267,9 +267,9 @@
try {
var testCanvas = document.createElement('canvas');
if (majorVersion === 1) {
- testContext = testCanvas.getContext('webgl') || testCanvas.getContet('experimental-webgl');
+ testContext = testCanvas.getContext('webgl') || testCanvas.getContext('experimental-webgl');
} else if (majorVersion === 2) {
- testContext = testCanvas.getContext('webgl2') || testCanvas.getContet('experimental-webgl2');
+ testContext = testCanvas.getContext('webgl2') || testCanvas.getContext('experimental-webgl2');
}
} catch (e) {}
return !!testContext;