Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
chat_webview
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abookCommunication
chat_webview
Commits
5d16ab1e
Commit
5d16ab1e
authored
Jun 16, 2021
by
Lee Munkyeong
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'feature/43212' into 'develop'
43212対応。 See merge request
!180
parents
c1ccd341
e31b53c2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
1 deletions
+9
-1
public_new/collaboration.html
+1
-0
public_new/js/constant.js
+5
-0
public_new/js/share.js
+3
-1
No files found.
public_new/collaboration.html
View file @
5d16ab1e
...
...
@@ -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
;
...
...
public_new/js/constant.js
View file @
5d16ab1e
...
...
@@ -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"
;
...
...
public_new/js/share.js
View file @
5d16ab1e
...
...
@@ -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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment