Commit 43895f05 by Lee Munkyeong

Merge branch 'feature/Fix_onscroll_IOS' into 'develop'

IOSでスクロールするとメッセージロードを複数呼び出す問題対応

See merge request !182
parents 5e05ce42 fa830aad
var lastscrollvalue; var lastscrollvalue;
window.onscroll = function () { window.onscroll = function () {
if (beforeScroll == window.scrollY) {
return;
}
beforeScroll = window.scrollY; beforeScroll = window.scrollY;
const beforeHeight = $(".room_container").height(); const beforeHeight = $(".room_container").height();
messageCount = $(".chat_message").length; messageCount = $(".chat_message").length;
......
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