Fix: search -> search_player
This commit is contained in:
@@ -1,7 +1,8 @@
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
$("#section_add_player").load("./../module/maestro_section_add_player.html");
|
||||
$("#search").load("./../module/maestro_section_search.html");
|
||||
$("#search_player").load("./../module/maestro_section_search.html");
|
||||
$("#mouse_app_list").load("./../module/maestro_section_mouse_app.html");
|
||||
|
||||
// loadPlayerList();
|
||||
});
|
||||
@@ -23,15 +24,10 @@ $(document).ready(function() {
|
||||
<div id="section_add_player">
|
||||
</div>
|
||||
|
||||
<div id="search" class="hide">
|
||||
<div id="search_player" class="hide">
|
||||
</div>
|
||||
|
||||
<div id="mouse_app_list" class="hide">
|
||||
<form action="/action_page.php" method="get" id="app_mouse">
|
||||
<input type="checkbox" name="mouse">클릭 연습<br/>
|
||||
<input type="checkbox" name="mouse">더블 클릭 연습<br/>
|
||||
<button type="submit" form="app_mouse">적용</button>
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div id="typing_app_list" class="hide">
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
<script type="text/javascript">
|
||||
$(document).ready(function() {
|
||||
});
|
||||
|
||||
|
||||
</script>
|
||||
|
||||
|
||||
|
||||
<div id="mouse_app_content">
|
||||
|
||||
<input type="checkbox" id="checkbox1" checked="checked" />
|
||||
<label for="checkbox1">Option 1</label>
|
||||
|
||||
<input type="checkbox" id="checkbox2" />
|
||||
<label for="checkbox2">Option 2</label>
|
||||
|
||||
<input type="checkbox" id="checkbox3" />
|
||||
<label for="checkbox3">Option 3</label>
|
||||
|
||||
</div>
|
||||
@@ -5,8 +5,6 @@ $(document).ready(function() {
|
||||
$("#search_player_list_navigator > #page_no_area")
|
||||
);
|
||||
|
||||
// searchPlayerList = new PlayerList($("#search_player_list"));
|
||||
// searchPlayerListNavigator = new PlayerListNavigator($("#search_player_list_navigator > #page_no_area"));
|
||||
searchPlayerListManager.setupSearchPlayerList("");
|
||||
});
|
||||
|
||||
@@ -16,8 +14,8 @@ function searchPlayer() {
|
||||
let playerName = $("#search_name").val();
|
||||
|
||||
if(playerName.length === 0) {
|
||||
$("#add_player_notice").val("학생 이름을 입력하세요.");
|
||||
$("#add_player_name").focus();
|
||||
// $("#search_name_notice").val("학생 이름을 입력하세요.");
|
||||
$("#search_name").focus();
|
||||
}
|
||||
|
||||
searchPlayerListManager.setupSearchPlayerList(playerName);
|
||||
@@ -27,7 +25,7 @@ function searchPlayer() {
|
||||
|
||||
|
||||
|
||||
<span id="search_player">
|
||||
<span id="search_player_name">
|
||||
<h1>검색</h1>
|
||||
|
||||
학생 이름
|
||||
|
||||
Reference in New Issue
Block a user