mirror of
https://github.com/vacp2p/libp2p-website.git
synced 2026-01-09 15:27:56 -05:00
10 lines
245 B
JavaScript
10 lines
245 B
JavaScript
var $ = require('jquery')
|
|
|
|
module.exports = function scrollToHash () {
|
|
var hash = window.location.hash
|
|
if (hash.length) {
|
|
var $scrollTo = $(hash)
|
|
$('html, body').animate({scrollTop: $scrollTo.offset().top - 100}, 500, 'swing')
|
|
}
|
|
}
|