Parcourir la source

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

prodstable
keun il y a 8 ans
Parent
révision
f3f5a2e036
1 fichiers modifiés avec 4 ajouts et 3 suppressions
  1. +4
    -3
      frontend/web/js/boulange.js

+ 4
- 3
frontend/web/js/boulange.js Voir le fichier

@@ -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()

Chargement…
Annuler
Enregistrer