Commit 3edb8574 by Lee Munkyeong

ネームカード修正。

parent cffb2468
......@@ -432,18 +432,10 @@
</div>
<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 chat-list-type-btn" id="nameCardVoiceBtn"></button>
<button type="button" class="btn btn-primary chat-list-type-btn" id="nameCardFavoriteBtn"></button>
<button type="button" class="btn btn-primary" id="nameCardChatBtn">{{chat}}</button>
<button type="button" class="btn btn-primary" id="nameCardVoiceBtn">{{voice}}</button>
<button type="button" class="btn btn-primary" id="nameCardFavoriteBtn">{{favorite}}</button>
</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 id="message-template" type="text/template">
<div class="incoming_msg">
......
......@@ -881,9 +881,7 @@ CHAT_UI.htmlElementTextInitialize = function(languageCode) {
$("#childGroupSeperator").text(getLocalizedString("childGroup"))
$("#groupUserSeperator").text(getLocalizedString("groupUser"))
$("#nameCardChatBtn").text(getLocalizedString("chat"))
$("#nameCardVoiceBtn").text(getLocalizedString("voice"))
$("#nameCardFavoriteBtn").text(getLocalizedString("addFavorite"))
$("#favorite-seperator").text(getLocalizedString("favorite"))
......@@ -992,7 +990,10 @@ CHAT_UI.refreshContactScreen = function() {
loginId: groupUser.shopMemberId,
profileImage: groupUser.profileImagePath,
name: groupUser.shopMemberName,
groupPathList: groupUser.groupPathList
groupPathList: groupUser.groupPathList,
chat: getLocalizedString("chat"),
voice: getLocalizedString("voice"),
favorite: getLocalizedString("addFavorite")
});
console.log(namecardHtml);
let namecardObj = $(jQuery.parseHTML(namecardHtml)).on('click', function(){
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment