Doesn’t work in Firefox
-
I had to modify your scrollup-master.php file to make it work. I’ve replaced your scrollTo function with this
function smoothscroll(){
var currentScroll = document.documentElement.scrollTop || document.body.scrollTop;
if (currentScroll > 0) {
window.requestAnimationFrame(smoothscroll);
window.scrollTo (0,currentScroll – (currentScroll/5));
}
};
The topic ‘Doesn’t work in Firefox’ is closed to new replies.