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
2e455b85
Commit
2e455b85
authored
Apr 02, 2021
by
Kang Donghun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
マジリクエストで見つけた問題修正
parent
c49dc801
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
31 deletions
+14
-31
public_new/collaboration_overlay_add_user_list.html
+12
-6
public_new/css/chat.css
+0
-8
public_new/js/chat.js
+0
-15
public_new/template/template_user_list.html
+2
-2
No files found.
public_new/collaboration_overlay_add_user_list.html
View file @
2e455b85
...
...
@@ -61,7 +61,8 @@
</div>
</div>
<div
class=
"user_item_l"
>
<div
class=
"thumbnail"
><div
class=
"img_wrap"
><img
src=
"img/thumbnail.png"
alt=
"サムネイル画像"
/></div>
<div
class=
"thumbnail"
>
<div
class=
"img_wrap"
><img
src=
"img/thumbnail.png"
alt=
"サムネイル画像"
/></div>
</div>
</div>
<div
class=
"user_item_m"
>
...
...
@@ -84,7 +85,8 @@
</div>
</div>
<div
class=
"user_item_l"
>
<div
class=
"thumbnail"
><div
class=
"img_wrap"
><img
src=
"img/thumbnail.png"
alt=
"サムネイル画像"
/></div>
<div
class=
"thumbnail"
>
<div
class=
"img_wrap"
><img
src=
"img/thumbnail.png"
alt=
"サムネイル画像"
/></div>
</div>
</div>
<div
class=
"user_item_m"
>
...
...
@@ -107,7 +109,8 @@
</div>
</div>
<div
class=
"user_item_l"
>
<div
class=
"thumbnail"
><div
class=
"img_wrap"
><img
src=
"img/thumbnail.png"
alt=
"サムネイル画像"
/></div>
<div
class=
"thumbnail"
>
<div
class=
"img_wrap"
><img
src=
"img/thumbnail.png"
alt=
"サムネイル画像"
/></div>
</div>
</div>
<div
class=
"user_item_m"
>
...
...
@@ -130,7 +133,8 @@
</div>
</div>
<div
class=
"user_item_l"
>
<div
class=
"thumbnail"
><div
class=
"img_wrap"
><img
src=
"img/thumbnail.png"
alt=
"サムネイル画像"
/></div>
<div
class=
"thumbnail"
>
<div
class=
"img_wrap"
><img
src=
"img/thumbnail.png"
alt=
"サムネイル画像"
/></div>
</div>
</div>
<div
class=
"user_item_m"
>
...
...
@@ -153,7 +157,8 @@
</div>
</div>
<div
class=
"user_item_l"
>
<div
class=
"thumbnail"
><div
class=
"img_wrap"
><img
src=
"img/thumbnail.png"
alt=
"サムネイル画像"
/></div>
<div
class=
"thumbnail"
>
<div
class=
"img_wrap"
><img
src=
"img/thumbnail.png"
alt=
"サムネイル画像"
/></div>
</div>
</div>
<div
class=
"user_item_m"
>
...
...
@@ -176,7 +181,8 @@
</div>
</div>
<div
class=
"user_item_l"
>
<div
class=
"thumbnail"
><div
class=
"img_wrap"
><img
src=
"img/thumbnail.png"
alt=
"サムネイル画像"
/></div>
<div
class=
"thumbnail"
>
<div
class=
"img_wrap"
><img
src=
"img/thumbnail.png"
alt=
"サムネイル画像"
/></div>
</div>
</div>
<div
class=
"user_item_m"
>
...
...
public_new/css/chat.css
View file @
2e455b85
...
...
@@ -103,10 +103,6 @@ input[name="tab_item"] {
overflow
:
hidden
;
margin
:
0
auto
;
}
<<<<<<<
HEAD
=======
>>>>>>>
20fd104461a13632e6bf4112a272fa5d3e82c248
.chat_item_l
.thumbnail
img
{
width
:
50px
;
height
:
50px
;
...
...
@@ -117,10 +113,6 @@ input[name="tab_item"] {
float
:
left
;
}
<<<<<<<
HEAD
=======
>>>>>>>
20fd104461a13632e6bf4112a272fa5d3e82c248
.chat_item_l
.thumbnail3
.img_wrap
:nth-child
(
1
)
{
width
:
25px
;
height
:
50px
;
...
...
public_new/js/chat.js
View file @
2e455b85
...
...
@@ -269,21 +269,6 @@ CHAT.leaveRoom = function() {
}
$
(
function
()
{
// ルーム開設メンバー数カウント
$
(
'input:checkbox'
).
change
(
function
()
{
if
(
$
(
this
).
prop
(
'checked'
)){
$
(
this
).
attr
(
'checked'
,
true
);
}
else
{
$
(
this
).
removeAttr
(
'checked'
);
}
}).
trigger
(
'change'
);
// チェックした人数カウント
$
(
'input:checkbox'
).
change
(
function
()
{
var
cnt
=
$
(
'.checkbox input:checkbox:checked'
).
length
;
$
(
'.select_member_num'
).
text
(
cnt
);
}).
trigger
(
'change'
);
// ルーム人数選択確認イベント
$
(
'.make_room_btn button'
).
click
(
function
(){
$
(
'form'
).
submit
();
...
...
public_new/template/template_user_list.html
View file @
2e455b85
...
...
@@ -4,8 +4,8 @@
<a
href=
"javascript:return false;"
onclick=
"CHAT_UI.makeNameCard({{shopMemberId}})"
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
src=
"{{profileUrl}}"
onError=
"this.src='./img/noImage.png'"
/></div>
<div
class=
"thumbnail"
>
<div
class=
"img_wrap"
><img
src=
"{{profileUrl}}"
onError=
"this.src='./img/noImage.png'"
/></div>
</div>
</div>
<div
class=
"chat_item_m px-0"
>
...
...
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