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
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
public_new/collaboration_overlay_menu.html
+0
-0
public_new/js/common/common.js
+8
-2
No files found.
public_new/collaboration_overlay_menu.html
View file @
3a8d2859
public_new/js/common/common.js
View file @
3a8d2859
...
...
@@ -73,7 +73,6 @@ document.addEventListener("DOMContentLoaded", function () {
});
document
.
addEventListener
(
"readystatechange"
,
()
=>
{
switch
(
document
.
readyState
)
{
case
"interactive"
:
break
;
...
...
@@ -146,7 +145,12 @@ Common.getProfileImgUrl = function (path) {
if
(
receivedString
==
""
||
receivedString
==
undefined
)
{
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
]);
}
else
{
...
...
@@ -186,7 +190,9 @@ Common.startCollaboration = function (collaborationType) {
}
}
if
(
typeof
CHAT_SOCKET
!=
"undefined"
)
{
CHAT_SOCKET
.
emitCollaborationFinishMessage
();
}
NativeBridgeDelegate
.
finishAllCollaboration
();
NativeBridgeDelegate
.
startCollaboration
(
collaborationType
);
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