hugo-sustain/static/js/main.js

15 lines
298 B
JavaScript
Raw Normal View History

2016-10-22 07:20:15 +00:00
/**
* Created by fabiomadeira on 25/02/15.
*/
// jQuery for page scrolling feature
jQuery(document).ready(function(e) {
e(".scroll").click(function(t) {
t.preventDefault();
e("html,body").animate({
scrollTop: e(this.hash).offset().top
}, 1e3)
})
});