Commit c1ccd341 by Takatoshi Miura

Merge branch 'communication/#43025_message-loading' into 'develop'

#43025_iOSでメッセージ読み込み時に最新を表示しないバグを修正

See merge request !179
parents 18a79530 5b0e6b7e
......@@ -1090,6 +1090,12 @@ CHAT_UI.loadMessages = function (roomId, joinRoomName) {
CHAT_UI.waitForLoadingVideo(jQueryMessages, CHAT_UI.scrollToBottom);
// ユーザ削除ボタン表示しない
$("#userSelectionDeleteBtn").hide();
if (CHAT_UTIL.isIOS()) {
$(window).on('load', function() {
CHAT_UI.scrollToBottom();
});
}
};
......
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