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
f4a505f0
Commit
f4a505f0
authored
Mar 26, 2021
by
Lee Munkyeong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
チャット画面UI
parent
bb64ab0d
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
6 deletions
+0
-6
public_new/archive.html
+0
-1
public_new/chat.html
+0
-1
public_new/contact.html
+0
-1
public_new/js/chat-ui.js
+0
-3
No files found.
public_new/archive.html
View file @
f4a505f0
...
...
@@ -338,7 +338,6 @@
<a
href=
"chat.html"
>
<img
src=
"icon/icon_chat_gray.png"
alt=
"チャット"
>
<p>
チャット
</p>
<span
class=
"unread_num"
>
999+
</span>
</a>
</div>
<div
class=
"footer_item"
>
...
...
public_new/chat.html
View file @
f4a505f0
...
...
@@ -85,7 +85,6 @@
<a
href=
"chat.html"
>
<img
src=
"icon/icon_chat.png"
alt=
"チャット"
>
<p
class=
"active"
>
チャット
</p>
<span
class=
"unread_num"
>
999+
</span>
</a>
</div>
<div
class=
"footer_item"
>
...
...
public_new/contact.html
View file @
f4a505f0
...
...
@@ -179,7 +179,6 @@
<a
href=
"chat.html"
>
<img
src=
"icon/icon_chat_gray.png"
alt=
"チャット"
>
<p>
チャット
</p>
<span
class=
"unread_num"
>
999+
</span>
</a>
</div>
<div
class=
"footer_item"
>
...
...
public_new/js/chat-ui.js
View file @
f4a505f0
...
...
@@ -1080,7 +1080,6 @@ CHAT_UI.refreshRoomList = function(roomType) {
CHAT_UI.joinRoom(roomId,roomName);*/
//TODO ルームに入る処理追加必要
});
console
.
log
(
obj
);
// ルームグループごとに追加。
switch
(
roomType
)
{
case
chatRoomType
.
GROUP
:
...
...
@@ -1088,7 +1087,6 @@ CHAT_UI.refreshRoomList = function(roomType) {
$
(
'#groupChatList'
).
append
(
obj
);
break
;
case
chatRoomType
.
DM
:
console
.
log
(
roomType
);
$
(
'#dmChatList'
).
append
(
obj
);
break
;
default
:
...
...
@@ -1109,7 +1107,6 @@ CHAT_UI.joinRoom = function(roomId,roomName) {
}
var
messages
=
CHAT_DB
.
getMessages
(
roomId
);
CHAT_UI
.
loadMessages
(
messages
,
roomId
,
roomName
)
};
CHAT_UI
.
loadMessages
=
function
(
messages
,
roomId
,
roomName
)
{
...
...
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