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
c47e0989
Commit
c47e0989
authored
Apr 28, 2021
by
Kang Donghun
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
チャットルーム内でネームカードのグループパスタップするとグループ検索画面に遷移されるように修正
parent
d0dd14b2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
3 deletions
+20
-3
public_new/contact.html
+8
-1
public_new/js/chat-ui.js
+12
-2
No files found.
public_new/contact.html
View file @
c47e0989
...
@@ -217,7 +217,14 @@
...
@@ -217,7 +217,14 @@
PLATFORM
=
platform
;
PLATFORM
=
platform
;
IS_MOBILE
=
isMobile
;
IS_MOBILE
=
isMobile
;
IS_ONLINE
=
isOnline
;
IS_ONLINE
=
isOnline
;
CHAT_UI
.
refreshContactScreen
();
let
groupId
=
android
.
getToMoveGroupId
();
if
(
groupId
!=
""
&&
groupId
!=
undefined
)
{
CHAT_UI
.
refreshAllGroupSearch
(
groupId
);
android
.
setToMoveGroupId
(
""
);
}
else
{
CHAT_UI
.
refreshContactScreen
();
}
};
};
</script>
</script>
</body>
</body>
...
...
public_new/js/chat-ui.js
View file @
c47e0989
...
@@ -1538,6 +1538,12 @@ CHAT_UI.insertFavoriteGroup = function(groupId) {
...
@@ -1538,6 +1538,12 @@ CHAT_UI.insertFavoriteGroup = function(groupId) {
//全グループ検索画面表示。
//全グループ検索画面表示。
CHAT_UI
.
refreshAllGroupSearch
=
function
(
paramGroupId
)
{
CHAT_UI
.
refreshAllGroupSearch
=
function
(
paramGroupId
)
{
var
groupId
=
paramGroupId
;
var
groupId
=
paramGroupId
;
if
(
window
.
location
.
pathname
.
includes
(
"chat_room"
))
{
if
(
groupId
==
""
)
return
;
android
.
setToMoveGroupId
(
groupId
);
window
.
location
.
href
=
"contact.html"
;
}
CHAT_UI
.
showLoadingIndicator
();
CHAT_UI
.
showLoadingIndicator
();
$
(
'#userNameCard'
).
modal
(
'hide'
);
$
(
'#userNameCard'
).
modal
(
'hide'
);
$
(
'.cancel'
).
addClass
(
'none'
);
$
(
'.cancel'
).
addClass
(
'none'
);
...
@@ -2809,4 +2815,8 @@ CHAT_UI.insertFavoriteUserInCollaboration = function(shopMemberId) {
...
@@ -2809,4 +2815,8 @@ CHAT_UI.insertFavoriteUserInCollaboration = function(shopMemberId) {
result
=
CHAT_DB
.
addFavoriteUser
(
shopMemberId
);
result
=
CHAT_DB
.
addFavoriteUser
(
shopMemberId
);
}
}
CHAT_UI
.
dismissLoadingIndicator
();
CHAT_UI
.
dismissLoadingIndicator
();
};
};
\ No newline at end of file
CHAT_UI
.
moveToGroupSearch
=
function
(
groupId
)
{
}
\ No newline at end of file
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