Commit 1b15115b by Lee Daehyun

チャットルーム検索のルーム開設ボタン修正

parent 62c2f5a6
...@@ -31,7 +31,7 @@ ...@@ -31,7 +31,7 @@
</div> </div>
</div> </div>
<div class="col-4 pl-0"> <div class="col-4 pl-0">
<div class="nav-item text-right"> <div class="nav-item text-right craeteRoomButton">
<a href="chat_make_room.html"> <a href="chat_make_room.html">
<img src="icon/icon_make_room.png" alt="ルーム開設"> <img src="icon/icon_make_room.png" alt="ルーム開設">
</a> </a>
......
...@@ -39,6 +39,7 @@ $(function() { ...@@ -39,6 +39,7 @@ $(function() {
$('.cancel').removeClass('none'); $('.cancel').removeClass('none');
$('.search_form form').addClass('d-flex flex-row h-100 align-items-center'); $('.search_form form').addClass('d-flex flex-row h-100 align-items-center');
$('.content').addClass('none'); $('.content').addClass('none');
$('.craeteRoomButton').addClass('none');
}); });
// 共通検索フォーム キャンセルボタン押下イベント // 共通検索フォーム キャンセルボタン押下イベント
$('.search_form .cancel').click(function(){ $('.search_form .cancel').click(function(){
...@@ -48,6 +49,7 @@ $(function() { ...@@ -48,6 +49,7 @@ $(function() {
$('.search_form form').removeClass(); $('.search_form form').removeClass();
$('.content').removeClass('none'); $('.content').removeClass('none');
$('.overlay_src_msg').empty(); $('.overlay_src_msg').empty();
$('.craeteRoomButton').removeClass('none');
}); });
$('.message_input_form').click(function(){ $('.message_input_form').click(function(){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment