Fix: player list manager

This commit is contained in:
2018-07-04 09:28:43 +09:00
parent 8d9e48af39
commit 4413f0de0b
10 changed files with 175 additions and 138 deletions
+3 -5
View File
@@ -135,7 +135,7 @@ class PlayerList {
}
console.log("update player list");
loadPlayerListPage(1);
self.loadPlayerListPage(1);
}
}
}
@@ -149,7 +149,7 @@ class PlayerList {
let endNo = pageIndex * 10 + 9;
let xhr = new XMLHttpRequest(); //new로 생성.
xhr.open('POST', './../server/user/registered_player_list_page.php', true);
xhr.open('POST', './../server/user/registered_player_list.php', true);
xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
xhr.send("maestro_id=" + maestroID + "&start_no=" + startNo + "&end_no=" + endNo);
xhr.onload = function() {
@@ -187,6 +187,4 @@ class PlayerList {
}
}
}
}
}