fix : 가로스크롤 이동시 조회되는 오류 수정

main
이범준 1 year ago
parent 2c4c515c5d
commit 3cb7d4357f

@ -450,6 +450,9 @@ $(document).ready(function(){
//스크롤 이벤트 추가
$("#table-responsive--${pageSuffix}").scroll(function(){
var el = $(this);
if(el.scrollTop() == 0){
return;
}
if((el[0].scrollHeight - el.scrollTop() + 15) == el.outerHeight()){
scrollCrdns();
}

Loading…
Cancel
Save