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
3edb8574
Commit
3edb8574
authored
Mar 08, 2021
by
Lee Munkyeong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ネームカード修正。
parent
cffb2468
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
15 deletions
+8
-15
public/index.html
+3
-11
public/js/chat-ui.js
+5
-4
No files found.
public/index.html
View file @
3edb8574
...
@@ -432,18 +432,10 @@
...
@@ -432,18 +432,10 @@
<
/div
>
<
/div
>
<
div
class
=
"text-center"
>
<
div
class
=
"text-center"
>
<
button
type
=
"button"
class
=
"btn btn-primary
chat-list-type-btn"
id
=
"nameCardChatBtn"
>
<
/button
>
<
button
type
=
"button"
class
=
"btn btn-primary
"
id
=
"nameCardChatBtn"
>
{{
chat
}}
<
/button
>
<
button
type
=
"button"
class
=
"btn btn-primary
chat-list-type-btn"
id
=
"nameCardVoiceBtn"
>
<
/button
>
<
button
type
=
"button"
class
=
"btn btn-primary
"
id
=
"nameCardVoiceBtn"
>
{{
voice
}}
<
/button
>
<
button
type
=
"button"
class
=
"btn btn-primary
chat-list-type-btn"
id
=
"nameCardFavoriteBtn"
>
<
/button
>
<
button
type
=
"button"
class
=
"btn btn-primary
"
id
=
"nameCardFavoriteBtn"
>
{{
favorite
}}
<
/button
>
<
/div
>
<
/div
>
<!--
<
div
class
=
"namecard-action-area"
>
<
div
class
=
"namecard-action-btn col-4 name-chat"
id
=
"nameCardChatBtn"
><
/div
>
<
div
class
=
"namecard-action-btn col-4 name-voice"
id
=
"nameCardVoiceBtn"
><
/div
>
<
div
class
=
"namecard-action-btn col-4 name-favorite"
id
=
"nameCardFavoriteBtn"
><
/div
>
<
/div>--
>
</script>
</script>
<script
id=
"message-template"
type=
"text/template"
>
<script
id=
"message-template"
type=
"text/template"
>
<
div
class
=
"incoming_msg"
>
<
div
class
=
"incoming_msg"
>
...
...
public/js/chat-ui.js
View file @
3edb8574
...
@@ -881,9 +881,7 @@ CHAT_UI.htmlElementTextInitialize = function(languageCode) {
...
@@ -881,9 +881,7 @@ CHAT_UI.htmlElementTextInitialize = function(languageCode) {
$
(
"#childGroupSeperator"
).
text
(
getLocalizedString
(
"childGroup"
))
$
(
"#childGroupSeperator"
).
text
(
getLocalizedString
(
"childGroup"
))
$
(
"#groupUserSeperator"
).
text
(
getLocalizedString
(
"groupUser"
))
$
(
"#groupUserSeperator"
).
text
(
getLocalizedString
(
"groupUser"
))
$
(
"#nameCardChatBtn"
).
text
(
getLocalizedString
(
"chat"
))
$
(
"#nameCardVoiceBtn"
).
text
(
getLocalizedString
(
"voice"
))
$
(
"#nameCardFavoriteBtn"
).
text
(
getLocalizedString
(
"addFavorite"
))
$
(
"#favorite-seperator"
).
text
(
getLocalizedString
(
"favorite"
))
$
(
"#favorite-seperator"
).
text
(
getLocalizedString
(
"favorite"
))
...
@@ -992,7 +990,10 @@ CHAT_UI.refreshContactScreen = function() {
...
@@ -992,7 +990,10 @@ CHAT_UI.refreshContactScreen = function() {
loginId
:
groupUser
.
shopMemberId
,
loginId
:
groupUser
.
shopMemberId
,
profileImage
:
groupUser
.
profileImagePath
,
profileImage
:
groupUser
.
profileImagePath
,
name
:
groupUser
.
shopMemberName
,
name
:
groupUser
.
shopMemberName
,
groupPathList
:
groupUser
.
groupPathList
groupPathList
:
groupUser
.
groupPathList
,
chat
:
getLocalizedString
(
"chat"
),
voice
:
getLocalizedString
(
"voice"
),
favorite
:
getLocalizedString
(
"addFavorite"
)
});
});
console
.
log
(
namecardHtml
);
console
.
log
(
namecardHtml
);
let
namecardObj
=
$
(
jQuery
.
parseHTML
(
namecardHtml
)).
on
(
'click'
,
function
(){
let
namecardObj
=
$
(
jQuery
.
parseHTML
(
namecardHtml
)).
on
(
'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