Fixed js section animation

This commit is contained in:
Alexander Zolotarev 2013-10-15 14:17:12 +03:00
parent 411839f3c6
commit 7aeab6d8d7

View file

@ -52,10 +52,10 @@ function onSectionClick(event) {
sectionToClose.className = next(sectionToClose).className = "";
});
animateScroll(this, 200);
this.className = contentSection.className = "openSection";
animateScroll(this, 200);
} else {
this.className = contentSection.className = "";
}
@ -87,8 +87,6 @@ function animateScroll(element, duration) {
if (duration < 0)
return;
var yLeft = element.getBoundingClientRect().top;
if (yLeft <= 0)
return;
var dy = yLeft / duration * ANIMATION_INTERVAL;
window.scrollBy(0, dy);