d9e1d84f08
- update class name of the spacing, font style, cards and toasts - update attribute names & tooltip usage - remove custom smooth scroll - syntax colors
20 lines
419 B
JavaScript
20 lines
419 B
JavaScript
/**
|
|
* 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', () => {
|
|
window.scrollTo(0, 0);
|
|
});
|
|
}
|