modal_chat_menu.html 1.06 KB
Newer Older
Kim Peace committed
1 2
<div class="modal fade menu_modal" id="menuModalCenter" tabindex="-1" role="dialog"
  aria-labelledby="menuModalCenterTitle" aria-hidden="true">
藤川諒 committed
3 4 5 6 7 8 9 10 11 12
  <div class="modal-dialog modal-dialog-centered" role="document">
    <div class="modal-content">
      <div class="modal-header border-0">
        <h5 class="modal-title" id="menuModalCenterTitle">メニュー</h5>
        <button type="button" class="close" data-dismiss="modal" aria-label="Close">
          <span aria-hidden="true">&times;</span>
        </button>
      </div>
      <div class="modal-body">
        <ul>
Kim Peace committed
13 14
          <li><a href="chat_change_room_name.html"><img src="icon/icon_change_room_name.png" alt="ルーム名変更">ルーム名変更</a>
          </li>
藤川諒 committed
15
          <li><a href="chat_add_user.html"><img src="icon/icon_add_user.png" alt="ユーザー招待">ユーザー招待</a></li>
Lee Munkyeong committed
16
          <li ><a href="javascript:return false;" onclick="CHAT_UI.roomDisplayOff();"><img src="icon/icon_chat_gray.png" alt="ユーザー招待">部屋非表示</a></li>
藤川諒 committed
17 18 19 20
        </ul>
      </div>
    </div>
  </div>
Kim Peace committed
21
</div>