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
cffb2468
Commit
cffb2468
authored
Mar 08, 2021
by
Lee Munkyeong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ネームカード修正。
parent
1ad276cf
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
67 additions
and
8 deletions
+67
-8
public/css/chat.css
+22
-1
public/index.html
+13
-4
public/js/chat-ui.js
+20
-0
public/js/language_en.js
+4
-1
public/js/language_ja.js
+4
-1
public/js/language_ko.js
+4
-1
No files found.
public/css/chat.css
View file @
cffb2468
...
@@ -710,7 +710,7 @@ a.article:hover {
...
@@ -710,7 +710,7 @@ a.article:hover {
}
}
.chat-list-type-btn
{
.chat-list-type-btn
{
width
:
3
0%
;
width
:
4
0%
;
}
}
#my_info
>
div
>
div
{
#my_info
>
div
>
div
{
padding-left
:
5%
;
padding-left
:
5%
;
...
@@ -772,6 +772,26 @@ a.article:hover {
...
@@ -772,6 +772,26 @@ a.article:hover {
#userInGroupList
>
div
>
div
{
#userInGroupList
>
div
>
div
{
padding-left
:
5%
;
padding-left
:
5%
;
}
}
.group-navigater
{
.group-navigater
{
margin-right
:
10px
;
margin-right
:
10px
;
}
.namecard-action-area
{
display
:
-webkit-box
;
}
.namecard-action-btn
{
text-align
:
center
;
}
.name-chat
{
background-color
:
yellow
;
}
.name-voice
{
background-color
:
green
;
}
.name-favorite
{
background-color
:
blue
;
}
}
\ No newline at end of file
public/index.html
View file @
cffb2468
...
@@ -430,11 +430,20 @@
...
@@ -430,11 +430,20 @@
<
li
><
b
>
{{.}}
<
/b></
li
>
<
li
><
b
>
{{.}}
<
/b></
li
>
{{
/
groupPathList
}}
{{
/
groupPathList
}}
<
/div
>
<
/div
>
<
div
>
<
div
class
=
"col-4"
>
Chat
<
/div
>
<
div
class
=
"text-center"
>
<
div
class
=
"col-4"
>
Voice
Call
<
/div
>
<
button
type
=
"button"
class
=
"btn btn-primary chat-list-type-btn"
id
=
"nameCardChatBtn"
><
/button
>
<
div
class
=
"col-4"
>
Favorite
<
/div
>
<
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
>
<
/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 @
cffb2468
...
@@ -881,6 +881,11 @@ CHAT_UI.htmlElementTextInitialize = function(languageCode) {
...
@@ -881,6 +881,11 @@ 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"
))
$
(
"#mygroup-seperator"
).
text
(
getLocalizedString
(
"mygroup"
))
$
(
"#mygroup-seperator"
).
text
(
getLocalizedString
(
"mygroup"
))
}
}
...
@@ -1328,3 +1333,17 @@ CHAT_UI.refesshAllGroupSearch = function(groupId) {
...
@@ -1328,3 +1333,17 @@ CHAT_UI.refesshAllGroupSearch = function(groupId) {
$
(
'#allGroupArea'
).
show
();
$
(
'#allGroupArea'
).
show
();
}
}
$
(
'#nameCardChatBtn'
).
on
(
'click'
,
function
(
e
)
{
//add Android Chat click
console
.
log
(
"ChatClick"
);
});
$
(
'#nameCardVoiceBtn'
).
on
(
'click'
,
function
(
e
)
{
//add Android Voice click
console
.
log
(
"VoiceClick"
);
});
$
(
'#nameCardFavoriteBtn'
).
on
(
'click'
,
function
(
e
)
{
//add Android Favorite click
console
.
log
(
"FavoriteClick"
);
});
\ No newline at end of file
public/js/language_en.js
View file @
cffb2468
...
@@ -66,5 +66,8 @@ $.lang.en = {
...
@@ -66,5 +66,8 @@ $.lang.en = {
"quickBtn"
:
"Quick Button"
,
"quickBtn"
:
"Quick Button"
,
"groupPath"
:
"Group Path"
,
"groupPath"
:
"Group Path"
,
"childGroup"
:
"Minor Group"
,
"childGroup"
:
"Minor Group"
,
"groupUser"
:
" Member List"
"groupUser"
:
" Member List"
,
"chat"
:
"Chat"
,
"voice"
:
"Call"
,
"addFavorite"
:
"Add Favorite"
}
}
public/js/language_ja.js
View file @
cffb2468
...
@@ -66,5 +66,8 @@ $.lang.ja = {
...
@@ -66,5 +66,8 @@ $.lang.ja = {
"quickBtn"
:
"クイックボタン"
,
"quickBtn"
:
"クイックボタン"
,
"groupPath"
:
"グループパンクズ"
,
"groupPath"
:
"グループパンクズ"
,
"childGroup"
:
"下位グループ"
,
"childGroup"
:
"下位グループ"
,
"groupUser"
:
"所属ユーザ"
"groupUser"
:
"所属ユーザ"
,
"chat"
:
"チャット"
,
"voice"
:
"通話"
,
"addFavorite"
:
"お気に入り追加"
}
}
public/js/language_ko.js
View file @
cffb2468
...
@@ -66,5 +66,8 @@ $.lang.ko = {
...
@@ -66,5 +66,8 @@ $.lang.ko = {
"quickBtn"
:
"퀵버튼"
,
"quickBtn"
:
"퀵버튼"
,
"groupPath"
:
"그룹 경로"
,
"groupPath"
:
"그룹 경로"
,
"childGroup"
:
"하위 그룹"
,
"childGroup"
:
"하위 그룹"
,
"groupUser"
:
"소속 사용자"
"groupUser"
:
"소속 사용자"
,
"chat"
:
"채팅"
,
"voice"
:
"통화"
,
"addFavorite"
:
"즐겨찾기추가"
}
}
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