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
a4a781bf
Commit
a4a781bf
authored
Apr 09, 2021
by
Kang Donghun
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'release_sp3' into 'bugfix/#499-招待画面リストクリア修正'
# Conflicts: # public_new/js/chat.js
parents
7d0fccf7
aeed436b
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
39 additions
and
35 deletions
+39
-35
public_new/contact.html
+25
-24
public_new/css/chat.css
+2
-0
public_new/css/common.css
+1
-1
public_new/css/contact.css
+3
-0
public_new/js/chat-ui.js
+3
-5
public_new/template/template_make_room_group_user_list.html
+3
-3
public_new/template/template_make_room_user_list.html
+2
-2
No files found.
public_new/contact.html
View file @
a4a781bf
...
...
@@ -49,36 +49,37 @@
<span
class=
"src_icon"
></span>
<a
href=
"#"
class=
"cancel none"
>
キャンセル
</a>
</div>
<div
class=
"content chat_list"
>
<ul
class=
"p-0 chat_make_room_list"
>
<li
class=
"d-flex align-items-center"
>
<a
href=
"#"
style=
"width: 100%;"
>
<div
class=
"chat_item d-flex flex-row align-items-center"
>
<div
class=
"chat_item_l"
>
<div
class=
"thumbnail"
>
<div
class=
"img_wrap"
><img
id=
"myImg"
src=
"img/noImage.png"
onError=
"this.src='./img/noImage.png'"
/></div>
</div>
</div>
<div
class=
"chat_item_m px-0"
>
<div
class=
"d-flex flex-column"
>
<div
class=
"chat_item_t"
>
<span
class=
"chat_item_ttl"
id=
"myName"
></span>
</div>
</div>
</div>
</div>
</a>
</li>
</ul>
</div>
<!-- タブ -->
<div
class=
"content tabs"
>
<input
id=
"tabMyGroup"
type=
"radio"
name=
"tab_item"
checked
>
<label
class=
"tab_item"
for=
"tabMyGroup"
>
マイグループ
</label>
<input
id=
"tabAllGroup"
type=
"radio"
name=
"tab_item"
>
<label
class=
"tab_item"
for=
"tabAllGroup"
>
全グループ
</label>
<div
class=
"content chat_list my_info_sell"
>
<ul
class=
"p-0 chat_make_room_list"
>
<li
class=
"d-flex align-items-center"
>
<a
href=
"#"
style=
"width: 100%;"
>
<div
class=
"chat_item d-flex flex-row align-items-center"
>
<div
class=
"chat_item_l"
>
<div
class=
"thumbnail"
>
<div
class=
"img_wrap"
><img
id=
"myImg"
src=
"img/noImage.png"
onError=
"this.src='./img/noImage.png'"
/></div>
</div>
</div>
<div
class=
"chat_item_m px-0"
>
<div
class=
"d-flex flex-column"
>
<div
class=
"chat_item_t"
>
<span
class=
"chat_item_ttl"
id=
"myName"
></span>
</div>
</div>
</div>
</div>
</a>
</li>
</ul>
</div>
<!-- タブ -->
<div
class=
"tab_content"
id=
"tab1_content"
>
<div
class=
"chat_list"
id=
"myContactList"
>
<!-- お気に入りグループ -->
...
...
public_new/css/chat.css
View file @
a4a781bf
...
...
@@ -59,6 +59,7 @@ input[name="tab_item"] {
/**************************** chat list *************************/
.chat_list
ul
{
padding
:
0
;
margin-top
:
1rem
;
}
.chat_list
img
{
width
:
90px
;
...
...
@@ -777,6 +778,7 @@ input[name="tab_item"] {
/* chat item */
.tab_item
{
font-size
:
16px
;
margin-bottom
:
1rem
;
}
.chat_item_ttl
{
font-size
:
16px
;
...
...
public_new/css/common.css
View file @
a4a781bf
...
...
@@ -6,7 +6,7 @@ body {
font-family
:
"Noto Sans JP"
,
sans-serif
;
margin
:
0
auto
;
color
:
#323743
;
margin-bottom
:
6
0px
;
margin-bottom
:
7
0px
;
overflow-x
:
hidden
;
}
a
:hover
{
...
...
public_new/css/contact.css
View file @
a4a781bf
...
...
@@ -14,3 +14,6 @@
.breadcrumb_item
{
color
:
#323743
;
}
.my_info_sell
{
clear
:
both
;
}
public_new/js/chat-ui.js
View file @
a4a781bf
...
...
@@ -1916,15 +1916,13 @@ CHAT_UI.checkForMakeChat = function(checkMemberId) {
CHAT
.
globalSelectedUserList
=
CHAT
.
globalSelectedUserList
.
filter
(
function
(
shopMemberId
)
{
return
checkMemberId
!=
shopMemberId
;
});
$
(
'.checkbox'
+
checkMemberId
).
prop
(
"checked"
,
false
).
trigger
(
"change"
);
}
else
{
// add
CHAT
.
globalSelectedUserList
.
push
(
checkMemberId
);
$
(
'.checkbox'
+
checkMemberId
).
prop
(
"checked"
,
true
).
trigger
(
"change"
);
}
if
(
$
(
'.checkbox'
+
checkMemberId
).
prop
(
'checked'
)){
$
(
'.checkbox'
+
checkMemberId
).
removeAttr
(
'checked'
);
}
else
{
$
(
'.checkbox'
+
checkMemberId
).
attr
(
'checked'
,
true
);
}
let
cnt
=
CHAT
.
globalSelectedUserList
.
length
;
if
(
CHAT
.
globalSelectedUserList
.
length
>
0
)
{
$
(
'.select_member_num'
).
text
(
cnt
);
...
...
public_new/template/template_make_room_group_user_list.html
View file @
a4a781bf
<div
class=
"category"
><div
class=
"category_name"
><span>
{{groupName}}
</span></div></div>
<div
class=
"category"
onclick=
"CHAT_UI.toggleCategory(this);"
><div
class=
"category_name"
><span>
{{groupName}}
</span></div></div>
<ul
class=
"p-0 chat_make_room_list"
>
{{#groupUserList}}
<li
class=
"d-flex align-items-center"
>
<div
class=
"chat_item d-flex flex-row align-items-center w-100"
>
<div
class=
"chat_item d-flex flex-row align-items-center w-100"
onclick=
"CHAT_UI.checkForMakeChat({{shopMemberId}});"
>
<div
class=
"chat_item_l_chk"
>
<div
class=
"checkbox"
>
<label>
<input
type=
"checkbox"
id=
"checkbox{{shopMemberId}}"
name=
"checkbox[]"
class=
"checkbox-input checkbox{{shopMemberId}}"
onc
hange
=
"CHAT_UI.checkForMakeChat({{shopMemberId}});"
{{
checked
}}
>
<input
type=
"checkbox"
id=
"checkbox{{shopMemberId}}"
name=
"checkbox[]"
class=
"checkbox-input checkbox{{shopMemberId}}"
onc
lick
=
"CHAT_UI.checkForMakeChat({{shopMemberId}});"
{{
checked
}}
>
<span
class=
"checkbox-parts"
></span>
</label>
</div>
...
...
public_new/template/template_make_room_user_list.html
View file @
a4a781bf
<ul
class=
"p-0 chat_make_room_list"
>
{{#userList}}
<li
class=
"d-flex align-items-center"
>
<div
class=
"chat_item d-flex flex-row align-items-center w-100"
>
<div
class=
"chat_item d-flex flex-row align-items-center w-100"
onclick=
"CHAT_UI.checkForMakeChat({{shopMemberId}});"
>
<div
class=
"chat_item_l_chk"
>
<div
class=
"checkbox"
>
<label>
<input
type=
"checkbox"
id=
"checkbox{{shopMemberId}}"
name=
"checkbox[]"
class=
"checkbox-input checkbox{{shopMemberId}}"
onc
hange
=
"CHAT_UI.checkForMakeChat({{shopMemberId}});"
{{
checked
}}
>
<input
type=
"checkbox"
id=
"checkbox{{shopMemberId}}"
name=
"checkbox[]"
class=
"checkbox-input checkbox{{shopMemberId}}"
onc
lick
=
"CHAT_UI.checkForMakeChat({{shopMemberId}});"
{{
checked
}}
>
<span
class=
"checkbox-parts"
></span>
</label>
</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