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
3a8d2859
Commit
3a8d2859
authored
Aug 30, 2021
by
Kim Peace
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'bug/#44046_1on1_from_contact' into 'develop'
Bug/#44046 1on1 from contact See merge request
!244
parents
db41fe42
8aae5d00
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
8 deletions
+14
-8
public_new/collaboration_overlay_menu.html
+5
-5
public_new/js/common/common.js
+9
-3
No files found.
public_new/collaboration_overlay_menu.html
View file @
3a8d2859
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
<div
class=
"item hide rounded-circle shadow m-2 item01"
>
<div
class=
"item hide rounded-circle shadow m-2 item01"
>
<span
class=
"item-overlay rounded-circle collaboration_contents voice_contents"
></span>
<span
class=
"item-overlay rounded-circle collaboration_contents voice_contents"
></span>
<a
href=
"javascript:changeCollaboration(COLLABORATION_TYPE.AUDIO);"
<a
href=
"javascript:changeCollaboration(COLLABORATION_TYPE.AUDIO);"
class=
"d-flex flex-column align-items-center"
>
class=
"d-flex flex-column align-items-center"
>
<div
class=
"img_wrap"
>
<div
class=
"img_wrap"
>
<img
src=
"icon/icon_collabo_headset.svg"
alt=
"音声共有"
>
<img
src=
"icon/icon_collabo_headset.svg"
alt=
"音声共有"
>
</div>
</div>
...
@@ -16,7 +16,7 @@
...
@@ -16,7 +16,7 @@
<div
class=
"item hide rounded-circle shadow m-2 item02"
>
<div
class=
"item hide rounded-circle shadow m-2 item02"
>
<span
class=
"item-overlay rounded-circle collaboration_contents video_contents"
></span>
<span
class=
"item-overlay rounded-circle collaboration_contents video_contents"
></span>
<a
href=
"javascript:changeCollaboration(COLLABORATION_TYPE.VIDEO);"
<a
href=
"javascript:changeCollaboration(COLLABORATION_TYPE.VIDEO);"
class=
"d-flex flex-column align-items-center"
>
class=
"d-flex flex-column align-items-center"
>
<div
class=
"img_wrap m-0"
>
<div
class=
"img_wrap m-0"
>
<img
src=
"icon/icon_collabo_videocam.svg"
alt=
"動画共有"
>
<img
src=
"icon/icon_collabo_videocam.svg"
alt=
"動画共有"
>
</div>
</div>
...
@@ -26,7 +26,7 @@
...
@@ -26,7 +26,7 @@
<div
class=
"item hide rounded-circle shadow m-2 item03"
>
<div
class=
"item hide rounded-circle shadow m-2 item03"
>
<span
class=
"item-overlay rounded-circle collaboration_contents picture_contents"
></span>
<span
class=
"item-overlay rounded-circle collaboration_contents picture_contents"
></span>
<a
href=
"javascript:changeCollaboration(COLLABORATION_TYPE.CAMERA);"
<a
href=
"javascript:changeCollaboration(COLLABORATION_TYPE.CAMERA);"
class=
"d-flex flex-column align-items-center"
>
class=
"d-flex flex-column align-items-center"
>
<div
class=
"img_wrap"
>
<div
class=
"img_wrap"
>
<img
src=
"icon/icon_collabo_picture.svg"
alt=
"写真共有"
>
<img
src=
"icon/icon_collabo_picture.svg"
alt=
"写真共有"
>
</div>
</div>
...
@@ -36,7 +36,7 @@
...
@@ -36,7 +36,7 @@
<div
class=
"item hide rounded-circle shadow m-2 item04"
>
<div
class=
"item hide rounded-circle shadow m-2 item04"
>
<span
class=
"item-overlay rounded-circle collaboration_contents document_contents"
></span>
<span
class=
"item-overlay rounded-circle collaboration_contents document_contents"
></span>
<a
href=
"javascript:changeCollaboration(COLLABORATION_TYPE.DOCUMENT);"
<a
href=
"javascript:changeCollaboration(COLLABORATION_TYPE.DOCUMENT);"
class=
"d-flex flex-column align-items-center"
>
class=
"d-flex flex-column align-items-center"
>
<div
class=
"img_wrap"
>
<div
class=
"img_wrap"
>
<img
src=
"icon/icon_collabo_document.svg"
alt=
"文書共有"
>
<img
src=
"icon/icon_collabo_document.svg"
alt=
"文書共有"
>
</div>
</div>
...
@@ -46,7 +46,7 @@
...
@@ -46,7 +46,7 @@
<div
class=
"item hide rounded-circle shadow m-2 item05"
>
<div
class=
"item hide rounded-circle shadow m-2 item05"
>
<span
class=
"item-overlay rounded-circle collaboration_contents board_contents"
></span>
<span
class=
"item-overlay rounded-circle collaboration_contents board_contents"
></span>
<a
href=
"javascript:changeCollaboration(COLLABORATION_TYPE.BOARD);"
<a
href=
"javascript:changeCollaboration(COLLABORATION_TYPE.BOARD);"
class=
"d-flex flex-column align-items-center"
>
class=
"d-flex flex-column align-items-center"
>
<div
class=
"img_wrap m-0"
>
<div
class=
"img_wrap m-0"
>
<img
src=
"icon/icon_collabo_whiteboard.svg"
alt=
"落書き"
>
<img
src=
"icon/icon_collabo_whiteboard.svg"
alt=
"落書き"
>
</div>
</div>
...
...
public_new/js/common/common.js
View file @
3a8d2859
...
@@ -73,7 +73,6 @@ document.addEventListener("DOMContentLoaded", function () {
...
@@ -73,7 +73,6 @@ document.addEventListener("DOMContentLoaded", function () {
});
});
document
.
addEventListener
(
"readystatechange"
,
()
=>
{
document
.
addEventListener
(
"readystatechange"
,
()
=>
{
switch
(
document
.
readyState
)
{
switch
(
document
.
readyState
)
{
case
"interactive"
:
case
"interactive"
:
break
;
break
;
...
@@ -146,7 +145,12 @@ Common.getProfileImgUrl = function (path) {
...
@@ -146,7 +145,12 @@ Common.getProfileImgUrl = function (path) {
if
(
receivedString
==
""
||
receivedString
==
undefined
)
{
if
(
receivedString
==
""
||
receivedString
==
undefined
)
{
return
Common
.
generateProfileImgURLFromServer
(
userInfo
[
0
],
userInfo
[
1
]);
return
Common
.
generateProfileImgURLFromServer
(
userInfo
[
0
],
userInfo
[
1
]);
}
}
return
"data:image/"
+
userInfo
[
0
].
split
(
'.'
).
pop
()
+
";base64,"
+
receivedString
;
return
(
"data:image/"
+
userInfo
[
0
].
split
(
"."
).
pop
()
+
";base64,"
+
receivedString
);
}
}
return
Common
.
generateProfileImgURLFromServer
(
userInfo
[
0
],
userInfo
[
1
]);
return
Common
.
generateProfileImgURLFromServer
(
userInfo
[
0
],
userInfo
[
1
]);
}
else
{
}
else
{
...
@@ -186,7 +190,9 @@ Common.startCollaboration = function (collaborationType) {
...
@@ -186,7 +190,9 @@ Common.startCollaboration = function (collaborationType) {
}
}
}
}
CHAT_SOCKET
.
emitCollaborationFinishMessage
();
if
(
typeof
CHAT_SOCKET
!=
"undefined"
)
{
CHAT_SOCKET
.
emitCollaborationFinishMessage
();
}
NativeBridgeDelegate
.
finishAllCollaboration
();
NativeBridgeDelegate
.
finishAllCollaboration
();
NativeBridgeDelegate
.
startCollaboration
(
collaborationType
);
NativeBridgeDelegate
.
startCollaboration
(
collaborationType
);
Common
.
dismissLoadingIndicator
();
Common
.
dismissLoadingIndicator
();
...
...
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