Fix: IE10 bug - DOCTYPE, IE=Edge, let -> var

This commit is contained in:
2018-11-20 13:52:23 +09:00
parent f2669ed5ca
commit 6b7c6c87b5
37 changed files with 136 additions and 47 deletions
+4 -4
View File
@@ -6,9 +6,9 @@ function loadMaestroExperienceAccount() {
"",
(function(jsonData) {
let maestroID = jsonData["maestroID"];
let playerID = jsonData["playerID"];
let playerName = jsonData["playerName"];
var maestroID = jsonData["maestroID"];
var playerID = jsonData["playerID"];
var playerName = jsonData["playerName"];
console.log("maestroID : " + maestroID);
console.log("playerID : " + playerID);
@@ -26,7 +26,7 @@ function loadMaestroExperienceAccount() {
})
);
let xhr = new XMLHttpRequest(); //new로 생성.
var xhr = new XMLHttpRequest(); //new로 생성.
}
function experienceMaestro() {