Commit 5d16ab1e by Lee Munkyeong

Merge branch 'feature/43212' into 'develop'

43212対応。

See merge request !180
parents c1ccd341 e31b53c2
......@@ -185,6 +185,7 @@
let IS_MOBILE = true;
let IS_ONLINE = false;
let collaborationJoinFlg = 0;
let isInvited = 0;
let roomType;
let joinCollaborationType = 0;
let joinMeetingId = 0;
......
......@@ -58,6 +58,11 @@ const PagingSize = {
MESSAGE: 100
};
const InvitedFlag = {
NONE: 0,
INVITED: 1,
};
const messageSeperator = "<::split>";
const DATA_MESSAGE_SCHEME = "::NOT_MESSAGE";
const FINISH_ALL_COLLABORATION_SIGNAL = "::ALL_COLLABORATION_END";
......
......@@ -367,6 +367,7 @@ document.addEventListener("DOMContentLoaded", function () {
loginId: globalUserInfo.loginId,
});
collaborationJoinFlg = "1";
isInvited = InvitedFlag.INVITED;
}
}
});
......@@ -447,6 +448,7 @@ document.addEventListener("DOMContentLoaded", function () {
joinMeetingId = meetingId;
}
} else if (collaborationJoinFlg == "2") {
isInvited = InvitedFlag.INVITED;
coview_api.JoinRoom(globalUserInfo.roomId, globalUserInfo.coWorkType);
}
Coview_moveToVideoShareArea();
......@@ -766,7 +768,7 @@ function Coview_finishCollaboration() {
}
}
isLeaved = true;
if (collaborationJoinFlg != "2") {
if (isInvited == InvitedFlag.NONE) {
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