Browse Source

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

prodstable
keun 8 years ago
parent
commit
f3f5a2e036
1 changed files with 4 additions and 3 deletions
  1. +4
    -3
      frontend/web/js/boulange.js

+ 4
- 3
frontend/web/js/boulange.js View File

@@ -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…
Cancel
Save