Commit 8bc00b68 by Kang Donghun

Merge branch 'bugfix/modify-to-move-group-search-on-name-card' into 'release_sp3'

Bugfix/modify to move group search on name card

See merge request !103
parents e9717514 0e0b8e7f
...@@ -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>
......
...@@ -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');
......
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