Skip to content
Snippets Groups Projects
Commit 2c720904 authored by Laurent's avatar Laurent
Browse files

dev #43877: library widget: automatically scroll to widget top when clicking on a facet

parent 5a6fa241
Branches
Tags
2 merge requests!1695dev #43877: library widget: automatically scroll to widget top when clicking on a facet,!1690Dev#43877 recette boite bibliotheque facette bibliotheque hyperlien
- ticket #43877 : Boite Bibliothèque : lorsqu'on clique sur une facette en bas de page, la page défile automatiquement pour se repositionner en haut de la liste
\ No newline at end of file
......@@ -30,10 +30,21 @@
if (url == "#")
url = node.jqmData("href");
widget.load(url + "/render/ajax .boite > *", widget.ajaxifyFilters);
widget.load(url + "/render/ajax .boite > *", onLoadComplete);
event.preventDefault();
};
var onLoadComplete = function() {
widget.ajaxifyFilters();
var offset = widget.offset();
$('html, body').animate({scrollTop:offset.top},
500,
'easeInSine');
};
var links = widget.find(".filters a");
links.click(function(event) {
refresh($(this), event, 'href');
......
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