Fix: IE10 bug - let, const -> var

This commit is contained in:
2018-11-20 13:31:38 +09:00
parent 370fba238d
commit f2669ed5ca
38 changed files with 107 additions and 107 deletions
+2 -2
View File
@@ -1,9 +1,9 @@
/////////////////////////////
// Main game
const CONTENT_ID = "Start";
var CONTENT_ID = "Start";
let game = new Phaser.Game(
var game = new Phaser.Game(
GAME_SCREEN_SIZE.x, GAME_SCREEN_SIZE.y,
Phaser.CANVAS, CONTENT_ID
);