From e06a56eac8c1fbf36e985697d3b6b1a66ec8ac0e Mon Sep 17 00:00:00 2001 From: Leon Krause Date: Fri, 16 Mar 2018 15:40:00 +0100 Subject: Fix typo in engine.js --- platform/javascript/engine.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'platform/javascript/engine.js') 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; -- cgit v1.2.3