Fix: IE10 bug - DOCTYPE, IE=Edge, let -> var
This commit is contained in:
@@ -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() {
|
||||
|
||||
Reference in New Issue
Block a user