When using scrollify and setting the footer as an interstitialSection with a class if the footer is taller than the viewport height it scrolls to the bottom of the footer not the top so you don't see where the footer begins? I would like it to snap to the top of the footer so then you can continue scrolling down to see whats in the footer?
$(document).ready(function(){
$(function() {
$.scrollify({
section: ".section",
sectionName : "section-name",
interstitialSection : ".footer-end",
scrollSpeed: 1500
});
});
});