소스 검색

Speed up smooth scrolling a bit

Thibaut Courouble 9 년 전
부모
커밋
29829ac1ce
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      assets/javascripts/lib/util.coffee

+ 2 - 2
assets/javascripts/lib/util.coffee

@@ -234,13 +234,13 @@ $.smoothScroll = (el, end) ->
 
   if smoothScroll
     newDistance = smoothEnd - smoothStart
-    smoothDuration += Math.min 400, Math.abs(smoothDistance - newDistance)
+    smoothDuration += Math.min 300, Math.abs(smoothDistance - newDistance)
     smoothDistance = newDistance
     return
 
   smoothStart = el.scrollTop
   smoothDistance = smoothEnd - smoothStart
-  smoothDuration = Math.min 400, Math.abs(smoothDistance)
+  smoothDuration = Math.min 300, Math.abs(smoothDistance)
   startTime = Date.now()
 
   smoothScroll = ->