Commit be4ea459 by Takatoshi Miura

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

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