Files
libp2p-website/js/lib/scroll-to-hash.js
Oli Evans 60ab7cc3fb Site refactor (#52)
* feat: all the things
2017-06-24 11:03:04 +01:00

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')
}
}