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
89faf50a
Commit
89faf50a
authored
Apr 09, 2021
by
Kang Donghun
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'bugfix/#499-招待画面リストクリア修正' into 'release_sp3'
Bugfix/#499 招待画面リストクリア修正 See merge request
!38
parents
aeed436b
a4a781bf
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
25 additions
and
12 deletions
+25
-12
public_new/chat_add_user.html
+2
-2
public_new/chat_make_room.html
+2
-2
public_new/chat_room.html
+2
-0
public_new/js/chat-add-user.js
+5
-0
public_new/js/chat.js
+7
-7
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 @
89faf50a
...
...
@@ -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 @
89faf50a
...
...
@@ -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/chat_room.html
View file @
89faf50a
...
...
@@ -178,9 +178,11 @@
$
(
"#pictureModal"
).
load
(
"./modal_chat_picture.html"
);
$
(
"#chatMenuModal"
).
load
(
"./modal_chat_menu.html"
);
$
(
"#loadingArea"
).
load
(
"./loading.html"
);
if
(
typeof
(
android
)
!=
"undefined"
)
{
android
.
getLoginParameter
();
android
.
getGlobalParameter
();
android
.
saveSelectedUserList
(
""
);
}
else
{
webkit
.
messageHandlers
.
loginInfoRequestMessageHandlerId
.
postMessage
({});
webkit
.
messageHandlers
.
getGlobalParameter
.
postMessage
({});
...
...
public_new/js/chat-add-user.js
View file @
89faf50a
$
(
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 @
89faf50a
...
...
@@ -332,13 +332,13 @@ $(function() {
});
$
(
'#chat_add_user .search_form .cancel'
).
click
(
function
()
{
CHAT
.
globalSelectedUserList
.
forEach
(
function
(
userId
)
{
if
(
$
(
'.checkbox'
+
userId
).
prop
(
'checked'
))
{
$
(
'.checkbox'
+
userId
).
prop
(
"checked"
,
false
).
trigger
(
"change"
);
}
else
{
$
(
'.checkbox'
+
userId
).
prop
(
"checked"
,
true
).
trigger
(
"change"
);
}
}
);
let
roomListTitle
=
getLocalizedString
(
"inviteUsersSubtitle"
);
$
(
'#addUserTitle'
).
text
(
roomListTitle
);
}
);
$
(
'#chatMakeRoom .search_form .cancel'
).
click
(
function
()
{
let
roomListTitle
=
getLocalizedString
(
"createRoomTitle"
);
$
(
'#makeRoomTitle'
).
text
(
roomListTitle
);
});
// チャットメンバー検索
...
...
public_new/js/chatMakeRoom.js
View file @
89faf50a
$
(
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 @
89faf50a
...
...
@@ -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