Commit 4811d860 by Lee Munkyeong

協業参加

parent be06cf39
......@@ -113,13 +113,13 @@
</a>
</div>
<div class="footer_item">
<a href="collaboration_picture.html">
<a href="javascript:CHAT_UI.startCollaboration(collaborationType.CAMERA);">
<img src="icon/icon_photo.png" alt="画像アイコン">
<p>画像</p>
</a>
</div>
<div class="footer_item">
<a href="collaboration_video.html">
<a href="javascript:CHAT_UI.startCollaboration(collaborationType.VIDEO);">
<img src="icon/icon_movie.png" alt="動画アイコン">
<p>動画</p>
</a>
......
......@@ -16,7 +16,7 @@
</a>
</div>
<div class="footer_item">
<a href="chat_room.html">
<a href="javascript:Coview_exitCollaboration();">
<div class="img_wrap bg_red">
<img src="icon/icon_tell.png" alt="通話">
</div>
......
......@@ -2421,4 +2421,4 @@ CHAT_UI.startCollaboration = function(collaborationType) {
} else if (CHAT_UTIL.isAndroid()) {
android.startCollaboration(collaborationType);
}
}
\ No newline at end of file
}
......@@ -76,6 +76,8 @@ $(function () {
// ユーザー招待メンバー検索
$(".add_user_btn").click(function () {
$("#overlay_add_user_list").removeClass("none");
$.ajax({
url: "collaboration_overlay_add_user_list.html",
......@@ -84,6 +86,8 @@ $(function () {
}).done(function (data) {
$("#add_user_list").html(data);
});
});
$('#penBtn').click(function () {
......
......@@ -202,3 +202,8 @@ function Coview_moveToVideoShareArea(){
$(".coview_share_area").show();
$('#collabo_main').removeClass('none');
}
function Coview_exitCollaboration(){
coview_api.LeaveRoom();
CHAT_UI.joinRoom(CHAT.globalLoginParameter.roomId, CHAT.globalLoginParameter.name);
}
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