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
4970ca85
Commit
4970ca85
authored
Apr 17, 2021
by
Kim Peace
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'features/#577_ユーザ招待でメッセージを表示' into 'release_sp3'
ユーザ招待で同じルームがあればポップアップを表示 See merge request
!65
parents
5e808b38
c1fa8f55
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
2 deletions
+12
-2
public_new/chat_room.html
+2
-2
public_new/js/chat-ui.js
+8
-0
public_new/js/chat.js
+2
-0
No files found.
public_new/chat_room.html
View file @
4970ca85
...
...
@@ -24,7 +24,7 @@
<div
class=
"d-flex flex-row h-100 align-items-center"
>
<input
type=
"search"
name=
"search"
id=
"searchMessage"
placeholder=
"メッセージ検索"
>
<span
class=
"src_icon"
></span>
<a
href=
"#"
class=
"cancel"
>
キャンセル
</a>
<a
href=
"#"
class=
"cancel"
id=
"messageSearchCancle"
>
キャンセル
</a>
</div>
</div>
<div
class=
"row nav_item_wrap h-100 align-items-center"
>
...
...
@@ -58,7 +58,7 @@
<!-- フィルター -->
<div
id=
"filter"
class=
"user_list filter d-flex flex-row none"
></div>
<div
class=
"chat_list"
id=
"searchList"
>
<div
class=
"chat_list
none
"
id=
"searchList"
>
<ul
class=
"overlay_src_msg"
>
</ul>
</div>
...
...
public_new/js/chat-ui.js
View file @
4970ca85
...
...
@@ -2366,4 +2366,11 @@ CHAT_UI.refreshForOffline = function() {
$
(
'.attach_file'
).
hide
();
$
(
'.fa-download'
).
hide
();
$
(
'.chat_room_footer'
).
hide
();
}
CHAT_UI
.
displayExistRoom
=
function
(
roomId
)
{
if
(
confirm
(
'error_already_exist_same_user'
))
{
android
.
joinRoom
(
roomId
,
''
);
}
return
;
}
\ No newline at end of file
public_new/js/chat.js
View file @
4970ca85
...
...
@@ -284,6 +284,7 @@ $(function() {
$
(
'.chat_room_src_form input[type="search"]'
).
focus
();
$
(
'#searchMessage'
).
addClass
(
'onfocus'
);
$
(
'.chat_list'
).
removeClass
(
'none'
);
});
$
(
'.chat_room_src_form .cancel'
).
click
(
function
(){
$
(
'.nav_item_wrap'
).
removeClass
(
'none'
);
...
...
@@ -297,6 +298,7 @@ $(function() {
$
(
'.chat_room_src_form input[type="search"]'
).
blur
();
$
(
'#searchMessage'
).
removeClass
(
'onfocus'
);
$
(
'.chat_list'
).
addClass
(
'none'
);
});
$
(
'.chat_room_src_form input[type="search"]'
).
click
(
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