2023-03-13 15:20:59 +03:00
|
|
|
/**
|
|
|
|
* Reference: https://bootsnipp.com/snippets/featured/link-to-top-page
|
|
|
|
*/
|
|
|
|
|
|
|
|
export function back2top() {
|
|
|
|
$(window).on('scroll', () => {
|
|
|
|
if (
|
|
|
|
$(window).scrollTop() > 50 &&
|
|
|
|
$('#sidebar-trigger').css('display') === 'none'
|
|
|
|
) {
|
|
|
|
$('#back-to-top').fadeIn();
|
|
|
|
} else {
|
|
|
|
$('#back-to-top').fadeOut();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$('#back-to-top').on('click', () => {
|
2023-04-10 05:54:27 +03:00
|
|
|
window.scrollTo(0, 0);
|
2023-03-13 15:20:59 +03:00
|
|
|
});
|
|
|
|
}
|