소스 검색

Corriger bug du scroll qui se lance sur un élément qui n'existe pas

prodstable
keun 8 년 전
부모
커밋
f3f5a2e036
1개의 변경된 파일4개의 추가작업 그리고 3개의 파일을 삭제
  1. +4
    -3
      frontend/web/js/boulange.js

+ 4
- 3
frontend/web/js/boulange.js 파일 보기

@@ -12,9 +12,10 @@ $(document).ready(function()
});

function boulange_scroll(id) {
$('html,body').animate({
scrollTop: $("#"+id).offset().top},
1000);
if($("#"+id).size())
$('html,body').animate({
scrollTop: $("#"+id).offset().top},
1000);
}

function boulange_index_commandes()

Loading…
취소
저장