Quote:
Originally Posted by Inflikted
is there a way to get rid of the bouncing up top? and simply have it scroll to the top
|
To remove the 'bounce', edit the .js file, find this line
var scroll = new Y.Scroll(document.getElementsByTagName((YAHOO.env. ua.webkit ? "body" : "html"))[0], {scroll: {to: [0, 0]}}, 3.5, Y.Easing.bounceOut);
change Y.Easing.bounceOut to 0.
var scroll = new Y.Scroll(document.getElementsByTagName((YAHOO.env. ua.webkit ? "body" : "html"))[0], {scroll: {to: [0, 0]}}, 3.5, 0);