Skip to content

Commit 860571a

Browse files
author
Nozomi Ito
committed
- Disable the confirm page slidedown effect to avoid WebDriver wait problem
- Fix bugs on the goto_next button
1 parent d65dcf2 commit 860571a

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

reserveApp/check_info.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ <h1>予約内容</h1>
1515
<div id="slide1" class="well">
1616
<div id="errorcheck_result" style="color:red"></div>
1717
<button id="returnto_index" type="sender" class="btn" style="margin-bottom:20px">戻る</button>
18-
<form id="reserve_info" action="./final_confirm.html" style="display:none">
19-
<div id="billing" style="display:none; margin-bottom:20px"></div>
18+
<form id="reserve_info" action="./final_confirm.html">
19+
<div id="billing" style="margin-bottom:20px"></div>
2020
</form>
2121

2222
</div>

reserveApp/js/reserveAppView.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ var starHotelView = {
8383
}
8484

8585
$("#billing").append("<h4 id='guestname'>お名前: <span id='gname'>" + checkValRes.gname + "</span> 様</h4>");
86-
$("#billing").slideDown("fast");
87-
$("#reserve_info").slideDown("fast");
86+
//$("#billing").slideDown("fast");
87+
//$("#reserve_info").slideDown("fast");
8888

8989
$("#reserve_info").append('<hr><button id="commit" type="sender" class="btn" style="margin-bottom:20px">確定</button>');
9090

reserveApp_Renewal/check_info.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ <h1>予約内容</h1>
6767
<div id="errorcheck_result" style="color:red"></div>
6868
<button id="returnto_index" type="sender" class="btn" style="margin-bottom:20px">戻る</button>
6969

70-
<div id="billing" style="display:none; margin-bottom:20px"></div>
70+
<div id="billing" style="margin-bottom:20px"></div>
7171

72-
<form id="reserve_info" action="./final_confirm.html" style="display:none">
72+
<form id="reserve_info" action="./final_confirm.html">
7373

7474
<input id="prev_formdata" type="hidden" name="pv_formdata" value="">
7575
<input id="prev_headcount" type="hidden" name="pv_headcount" value="">

reserveApp_Renewal/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,9 @@ <h3>プラン</h3>
110110
<h3>お名前</h3>
111111
<input id="guestname" name="gname" type="text" class="span4" maxlength="50" style="width:120px">
112112
<hr>
113-
<a href=\"javascript:alert('未実装')\">利用規約を確認</a><br><br>
113+
<a href="javascript:alert('未実装')">利用規約を確認</a><br><br>
114114
<button id="agree_and_goto_next" type="sender" class="btn" style="margin-bottom:20px">利用規約に同意して次へ</button>
115-
<button id="disagree" type="sender" class="btn" style="margin-bottom:20px; margin-left:20px" onclick="alert(\'未実装\');return false;">同意しない</button>
115+
<button id="disagree" class="btn" style="margin-bottom:20px; margin-left:20px" onclick="alert('未実装');return false;">同意しない</button>
116116
</form>
117117
</div>
118118

reserveApp_Renewal/js/reserveAppView.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ var starHotelView = {
8383
}
8484

8585
$("#billing").append("<h4 id='guestname'>お名前: <span id='gname'>" + checkValRes.gname + "</span> 様</h4>");
86-
$("#billing").slideDown("fast");
87-
$("#reserve_info").slideDown("fast");
86+
//$("#billing").slideDown("fast");
87+
//$("#reserve_info").slideDown("fast");
8888

8989
$("#reserve_info").append('<hr><button id="commit" type="sender" class="btn" style="margin-bottom:20px">確定</button>');
9090

0 commit comments

Comments
 (0)