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
7d0fccf7
Commit
7d0fccf7
authored
Apr 09, 2021
by
Kang Donghun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
StringValue修正
parent
6a9e372f
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
18 additions
and
7 deletions
+18
-7
public_new/chat_add_user.html
+2
-2
public_new/chat_make_room.html
+2
-2
public_new/js/chat-add-user.js
+5
-0
public_new/js/chat.js
+2
-2
public_new/js/chatMakeRoom.js
+6
-0
public_new/js/language_ja.js
+1
-1
No files found.
public_new/chat_add_user.html
View file @
7d0fccf7
...
...
@@ -24,13 +24,13 @@
<div
class=
"col-4 pr-0"
>
<div
class=
"nav-item"
>
<div
class=
"nav_prev"
>
<a
href=
"chat_room.html"
><span>
ルーム
</span></a>
<a
href=
"chat_room.html"
><span
style=
"font-size: 13px;"
>
ルーム
</span></a>
</div>
</div>
</div>
<div
class=
"col-4 p-0"
>
<div
class=
"nav-item p-0"
>
<h1
class=
"nav-ttl"
id=
"
title"
style=
"font-size: 13px;"
>
ユーザ
招待
</h1>
<h1
class=
"nav-ttl"
id=
"
addUserTitle"
>
ユーザー
招待
</h1>
</div>
</div>
<div
class=
"col-4 pl-0"
>
...
...
public_new/chat_make_room.html
View file @
7d0fccf7
...
...
@@ -24,13 +24,13 @@
<div
class=
"col-4 pr-0"
>
<div
class=
"nav-item"
>
<div
class=
"nav_prev"
>
<a
href=
"chat.html"
><span>
チャット
</span></a>
<a
href=
"chat.html"
><span
style=
"font-size: 13px;"
>
チャット
</span></a>
</div>
</div>
</div>
<div
class=
"col-4 p-0"
>
<div
class=
"nav-item p-0"
>
<h1
class=
"nav-ttl"
id=
"
title"
style=
"font-size: 13px;
"
>
ルーム開設
</h1>
<h1
class=
"nav-ttl"
id=
"
makeRoomTitle
"
>
ルーム開設
</h1>
</div>
</div>
<div
class=
"col-4 pl-0"
>
...
...
public_new/js/chat-add-user.js
View file @
7d0fccf7
$
(
function
()
{
// メンバー検索
$
(
'#chat_add_user .search_form input[type="search"]'
).
click
(
function
(
e
){
//画面タイトル設定
let
contactListTitle
=
getLocalizedString
(
"userSearch"
);
$
(
'#addUserTitle'
).
text
(
contactListTitle
);
})
$
(
'#chat_add_user .search_form input[type="search"]'
).
keyup
(
function
(
e
){
if
(
e
.
key
==
"Enter"
||
e
.
KeyCode
==
13
)
{
...
...
public_new/js/chat.js
View file @
7d0fccf7
...
...
@@ -333,12 +333,12 @@ $(function() {
$
(
'#chat_add_user .search_form .cancel'
).
click
(
function
()
{
let
roomListTitle
=
getLocalizedString
(
"inviteUsersSubtitle"
);
$
(
'#
chat
Title'
).
text
(
roomListTitle
);
$
(
'#
addUser
Title'
).
text
(
roomListTitle
);
});
$
(
'#chatMakeRoom .search_form .cancel'
).
click
(
function
()
{
let
roomListTitle
=
getLocalizedString
(
"createRoomTitle"
);
$
(
'#
chat
Title'
).
text
(
roomListTitle
);
$
(
'#
makeRoom
Title'
).
text
(
roomListTitle
);
});
// チャットメンバー検索
...
...
public_new/js/chatMakeRoom.js
View file @
7d0fccf7
$
(
function
()
{
// メンバー検索
$
(
'#chatMakeRoom .search_form input[type="search"]'
).
click
(
function
(
e
)
{
let
contactListTitle
=
getLocalizedString
(
"userSearch"
);
$
(
'#makeRoomTitle'
).
text
(
contactListTitle
);
});
$
(
'#chatMakeRoom .search_form input[type="search"]'
).
keyup
(
function
(
e
)
{
//画面タイトル設定
var
keyword
=
$
(
'#chatMakeRoom .search_form input[type="search"]'
).
val
();
if
(
e
.
KeyCode
==
13
||
e
.
key
==
"Enter"
)
{
if
(
keyword
!=
''
&&
keyword
.
length
!=
0
)
{
...
...
public_new/js/language_ja.js
View file @
7d0fccf7
...
...
@@ -10,7 +10,7 @@ $.lang.ja = {
"inviteUsersTitle"
:
"メンバー追加"
,
"createRoomTitle"
:
"ルーム開設"
,
"createRoomSubtitle"
:
"ルーム名"
,
"inviteUsersSubtitle"
:
"ユーザ招待"
,
"inviteUsersSubtitle"
:
"ユーザ
ー
招待"
,
"roomListEmptyString"
:
"入場できるルームがありません。"
,
"left"
:
"%@ 様が退場しました。"
,
"join"
:
"%@ 様が入場しました。"
,
...
...
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