Commit be4ea459 by Takatoshi Miura

全グループタブでmyInfoが表示される不具合を修正

parent 139a0c52
......@@ -16,4 +16,5 @@
}
.my_info_sell {
clear: both;
display: block;
}
......@@ -909,6 +909,7 @@ CHAT_UI.refreshContactScreen = function() {
$('#userNameCard').modal('hide');
$('#favoriteList').html('');
$('#myGroupList').html('');
$('.my_info_cell').css('display','block');
//画面タイトル設定
let contactListTitle = getLocalizedString("contactListTitle");
$('#title').text(contactListTitle);
......@@ -1431,6 +1432,7 @@ CHAT_UI.refreshAllGroupSearch = function(paramGroupId) {
$('.overlay_src_msg').empty();
$('#contactSearch').attr('placeholder', getLocalizedString('searchUserAndGroup'));
$('#tabAllGroup').prop('checked', true);
$('.my_info_cell').css('display','none');
//オンライン状態であればサーバから情報更新。
if (IS_ONLINE == 'true') {
......
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