UNPKG

@teradataprebuilt/fastcall-linux-node-v59

Version:

fastcall - Very fast, asynchronous, dyncall based foreign function interface library for Node.js

26 lines (22 loc) 572 B
/** * Animated scroll to named anchors. */ $(document.body).on('click', 'a', function () { var href = $(this).attr('href') if (href[0] === '#') { scrollTo(href) window.history && history.pushState({}, name, href) return false } }) function scrollTo (hash) { var name = hash.substring(1) var target = $('a[name="' + name + '"]') if (target.length) { $('html, body').animate({ scrollTop: target.offset().top } , { duration: 500, easing: 'swing'}) } else { console.log('documentation not written: %s', name) } return target }