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
e30e30f9
Commit
e30e30f9
authored
May 28, 2021
by
Lee Munkyeong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
42984,42983_オフラインの時の非表示、非活性項目修正
parent
d5318d4e
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
7 deletions
+13
-7
public_new/chat_room.html
+6
-2
public_new/js/chat-ui.js
+4
-2
public_new/modal_chat_menu.html
+3
-3
No files found.
public_new/chat_room.html
View file @
e30e30f9
...
...
@@ -108,8 +108,10 @@
</a>
</div>
<div
class=
"footer_item"
>
<img
src=
"icon/icon_paste.png"
alt=
"文書アイコン"
onclick=
"CHAT_UI.startCollaboration(COLLABORATION_TYPE.DOCUMENT);"
>
<a
href=
"javascript:CHAT_UI.startCollaboration(COLLABORATION_TYPE.DOCUMENT);"
>
<img
src=
"icon/icon_paste.png"
alt=
"文書アイコン"
>
<p>
文書
</p>
</a>
</div>
<div
class=
"footer_item"
>
<a
href=
"javascript:CHAT_UI.startCollaboration(COLLABORATION_TYPE.CAMERA);"
>
...
...
@@ -125,8 +127,10 @@
</div>
<!--リリース後開発予定-->
<div
class=
"footer_item"
>
<img
src=
"icon/icon_whiteboard_gray.png"
alt=
"ホワイトボードアイコン"
onclick=
"javascript:CHAT_UI.startCollaboration(COLLABORATION_TYPE.BOARD);"
>
<a
href=
"javascript:CHAT_UI.startCollaboration(COLLABORATION_TYPE.BOARD);"
>
<img
src=
"icon/icon_whiteboard_gray.png"
alt=
"ホワイトボードアイコン"
>
<p>
ボード
</p>
</a>
</div>
</div>
</div>
...
...
public_new/js/chat-ui.js
View file @
e30e30f9
...
...
@@ -2449,7 +2449,8 @@ CHAT_UI.refreshForOnline = function() {
$
(
'#messageInput'
).
prop
(
'disabled'
,
false
);
$
(
'#messageInput'
).
prop
(
'placeholder'
,
'メッセージを入力してください'
);
$
(
'#favoriteButton'
).
prop
(
'disabled'
,
false
);
$
(
'#roomMenu'
).
show
();
$
(
'#room_name_change_button'
).
removeClass
(
'ui-state-disabled'
);
$
(
'#add_user_button'
).
removeClass
(
'ui-state-disabled'
);
$
(
'.fa-download'
).
show
();
if
(
typeof
$
(
'#roomTitle'
).
val
()
!=
'undefined'
)
{
CHAT_SOCKET
.
connectSocket
();
...
...
@@ -2468,7 +2469,8 @@ CHAT_UI.refreshForOffline = function() {
$
(
'#messageInput'
).
prop
(
'disabled'
,
true
);
$
(
'#messageInput'
).
prop
(
'placeholder'
,
''
);
$
(
'#favoriteButton'
).
prop
(
'disabled'
,
true
);
$
(
'#roomMenu'
).
hide
();
$
(
'#room_name_change_button'
).
addClass
(
'ui-state-disabled'
);
$
(
'#add_user_button'
).
addClass
(
'ui-state-disabled'
);
$
(
'.fa-download'
).
hide
();
}
...
...
public_new/modal_chat_menu.html
View file @
e30e30f9
...
...
@@ -10,10 +10,10 @@
</div>
<div
class=
"modal-body"
>
<ul>
<li><a
href=
"chat_change_room_name.html"
><img
src=
"icon/icon_change_room_name.png"
alt=
"ルーム名変更"
>
ルーム名変更
</a>
<li><a
id=
"room_name_change_button"
href=
"chat_change_room_name.html"
><img
src=
"icon/icon_change_room_name.png"
alt=
"ルーム名変更"
>
ルーム名変更
</a>
</li>
<li><a
href=
"chat_add_user.html"
><img
src=
"icon/icon_add_user.png"
alt=
"ユーザー招待"
>
ユーザー招待
</a></li>
<li
><a
href=
"javascript:return false;"
onclick=
"CHAT_UI.roomDisplayOff();"
><img
src=
"icon/icon_display_off_chatroom.png"
alt=
"ユーザー招待"
>
部屋非表示
</a></li>
<li><a
id=
"add_user_button"
href=
"chat_add_user.html"
><img
src=
"icon/icon_add_user.png"
alt=
"ユーザー招待"
>
ユーザー招待
</a></li>
<li
><a
id=
"display_off_button"
href=
"javascript:return false;"
onclick=
"CHAT_UI.roomDisplayOff();"
><img
src=
"icon/icon_display_off_chatroom.png"
alt=
"ユーザー招待"
>
部屋非表示
</a></li>
</ul>
</div>
</div>
...
...
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