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
4811d860
Commit
4811d860
authored
Apr 20, 2021
by
Lee Munkyeong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
協業参加
parent
be06cf39
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
13 additions
and
5 deletions
+13
-5
public_new/chat_room.html
+2
-2
public_new/footer_collabo.html
+1
-1
public_new/js/chat-ui.js
+1
-2
public_new/js/collaboration.js
+4
-0
public_new/js/share.js
+5
-0
No files found.
public_new/chat_room.html
View file @
4811d860
...
...
@@ -113,13 +113,13 @@
</a>
</div>
<div
class=
"footer_item"
>
<a
href=
"
collaboration_picture.html
"
>
<a
href=
"
javascript:CHAT_UI.startCollaboration(collaborationType.CAMERA);
"
>
<img
src=
"icon/icon_photo.png"
alt=
"画像アイコン"
>
<p>
画像
</p>
</a>
</div>
<div
class=
"footer_item"
>
<a
href=
"
collaboration_video.html
"
>
<a
href=
"
javascript:CHAT_UI.startCollaboration(collaborationType.VIDEO);
"
>
<img
src=
"icon/icon_movie.png"
alt=
"動画アイコン"
>
<p>
動画
</p>
</a>
...
...
public_new/footer_collabo.html
View file @
4811d860
...
...
@@ -16,7 +16,7 @@
</a>
</div>
<div
class=
"footer_item"
>
<a
href=
"
chat_room.html
"
>
<a
href=
"
javascript:Coview_exitCollaboration();
"
>
<div
class=
"img_wrap bg_red"
>
<img
src=
"icon/icon_tell.png"
alt=
"通話"
>
</div>
...
...
public_new/js/chat-ui.js
View file @
4811d860
...
...
@@ -2421,4 +2421,4 @@ CHAT_UI.startCollaboration = function(collaborationType) {
}
else
if
(
CHAT_UTIL
.
isAndroid
())
{
android
.
startCollaboration
(
collaborationType
);
}
}
\ No newline at end of file
}
public_new/js/collaboration.js
View file @
4811d860
...
...
@@ -76,6 +76,8 @@ $(function () {
// ユーザー招待メンバー検索
$
(
".add_user_btn"
).
click
(
function
()
{
$
(
"#overlay_add_user_list"
).
removeClass
(
"none"
);
$
.
ajax
({
url
:
"collaboration_overlay_add_user_list.html"
,
...
...
@@ -84,6 +86,8 @@ $(function () {
}).
done
(
function
(
data
)
{
$
(
"#add_user_list"
).
html
(
data
);
});
});
$
(
'#penBtn'
).
click
(
function
()
{
...
...
public_new/js/share.js
View file @
4811d860
...
...
@@ -202,3 +202,8 @@ function Coview_moveToVideoShareArea(){
$
(
".coview_share_area"
).
show
();
$
(
'#collabo_main'
).
removeClass
(
'none'
);
}
function
Coview_exitCollaboration
(){
coview_api
.
LeaveRoom
();
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