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
41a2370a
Commit
41a2370a
authored
Sep 30, 2021
by
Kim Peace
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' into debug/console_logs
parents
053fd3bb
6d49b7f4
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
2 deletions
+18
-2
public_new/css/collaboration.css
+6
-1
public_new/js/views/collaboration/share-event-listener.js
+12
-1
No files found.
public_new/css/collaboration.css
View file @
41a2370a
...
...
@@ -562,7 +562,7 @@
background-repeat
:
no-repeat
;
background-position
:
center
;
background-size
:
contain
;
width
:
3
0px
;
width
:
5
0px
;
height
:
30px
;
margin
:
0
10px
6px
10px
;
}
...
...
@@ -740,6 +740,7 @@
}
#collabo_footer
.txt
{
font-size
:
12px
;
line-height
:
.9rem
;
}
@media
screen
and
(
max-width
:
768px
)
{
...
...
@@ -986,4 +987,8 @@ input[name="tab_item"] {
.room_left
{
max-width
:
75%
;
}
/* フッターアイコン */
.t-icon
{
width
:
30px
;
}
}
public_new/js/views/collaboration/share-event-listener.js
View file @
41a2370a
...
...
@@ -11,10 +11,21 @@ CoviewBridge.bindReadyEvent = function () {
// add login ID if not exist
CoviewBridge
.
addLoginID
(
globalUserInfo
.
loginId
);
CoviewBridge
.
loginCoview
();
});
};
CoviewBridge
.
loginCoview
=
function
()
{
try
{
coview_api
.
Login
(
globalUserInfo
.
loginId
);
}
catch
(
err
)
{
setTimeout
(()
=>
{
CoviewBridge
.
loginCoview
();
},
1000
);
return
;
}
CollaborationUI
.
updateScreen
(
globalUserInfo
.
collaborationType
);
NativeBridgeDelegate
.
setHostRequestFlg
(
HostRequestFlag
.
DONE
);
});
};
CoviewBridge
.
bindFermiWebSocketOpenned
=
function
()
{
...
...
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