Skip to content

Commit

Permalink
Paginate scroll to top (cds-snc#118)
Browse files Browse the repository at this point in the history
* Paginate scroll to top
  • Loading branch information
timarney committed Jan 16, 2019
1 parent af23524 commit d00add1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions track/static/js/tables.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,12 @@ var Tables = {
Utils.updatePagination();
});

table.on("page.dt",function(){
/* scroll page to top of table on page change */
var top = $(".dataTable").offset().top;
$("html, body").animate({ scrollTop: top }, "slow");
});

return table;
},

Expand Down

0 comments on commit d00add1

Please sign in to comment.