Fix: run test player in the _blank
This commit is contained in:
@@ -23,7 +23,7 @@
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
function runMaestroAccountApp() {
|
||||
function loadMaestroTestAccountInfo() {
|
||||
let xhr = new XMLHttpRequest(); //new로 생성.
|
||||
xhr.open('POST', './../server/maestro/maestro_test_player.php', true);
|
||||
xhr.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
|
||||
@@ -67,6 +67,11 @@ function runMaestroAccountApp() {
|
||||
}
|
||||
}
|
||||
|
||||
function runMaestroAccountApp() {
|
||||
loadMaestroTestAccountInfo();
|
||||
window.open("./../client/menu_app.html", "_blank");
|
||||
}
|
||||
|
||||
function deleteMaestroAllRecords() {
|
||||
// alert("마에스트로 전용 계정의 모든 플레이 기록이 지워집니다.\n예) 게임 기록, 타자 타수, 순위 등");
|
||||
if(confirm("마에스트로 전용 계정의 모든 플레이 기록이 지워집니다.\n예) 게임 기록, 타자 타수, 순위 등")) {
|
||||
@@ -102,7 +107,7 @@ function deleteMaestroAllRecords() {
|
||||
<ul class="header_menu">
|
||||
<li>
|
||||
<span class="col">
|
||||
<a href="./../client/menu_app.html" target="_blank" class="btn btn-rouge" onClick="runMaestroAccountApp()">마에스트로 앱<br/>실행</a>
|
||||
<a class="btn btn-rouge" onClick="runMaestroAccountApp()">마에스트로 앱<br/>실행</a>
|
||||
</span>
|
||||
</li>
|
||||
<li>
|
||||
|
||||
@@ -158,7 +158,14 @@ function register_account() {
|
||||
</select>
|
||||
<br/>
|
||||
<br/>
|
||||
<input id="check_accept_clauses" type="checkbox" name="accept_clauses">아래 약관을 읽었으며, 모든 내용에 동의합니다.<br/>
|
||||
|
||||
<span>
|
||||
<input type="checkbox" id="check_accept_clauses" />
|
||||
<label for="check_accept_clauses">아래 약관을 읽었으며, 모든 내용에 동의합니다.</label>
|
||||
</span>
|
||||
|
||||
|
||||
<input id="check_accept_clauses" type="checkbox" name="accept_clauses"><br/>
|
||||
<br/>
|
||||
|
||||
<br/>
|
||||
|
||||
Reference in New Issue
Block a user