You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/*
* Cross-Browser To Animate in the View to an Element
* @param object element : DOM Element
* @param int to : The position to scroll to
* @param int duration : The animation Time
*/
scrollTo : function(element, to, duration) {
if (duration <= 0) return;
var difference = to - element.scrollTop;
var perTick = difference / duration * 10;
setTimeout(function() {
element.scrollTop = element.scrollTop + perTick;
if (element.scrollTop === to) return;
scrollTo(element, to, duration - 10);
}, 10);
}
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: