Bug 946862: Disable vertical overscroll until bug 939480 is fixed. r=felipe

This commit is contained in:
Stephen Pohl 2013-12-05 15:38:32 -05:00
parent 3c7ed521e4
commit 6d5cf8fa83

View File

@ -203,10 +203,9 @@ let gGestureSupport = {
}
isVerticalSwipe = true;
}
if (isVerticalSwipe && !gHistorySwipeAnimation.active) {
// Unlike horizontal swipes (which can navigate history even when
// swipe animations are turned off) vertical swipes should not be tracked
// if animations (bounce effect) aren't enabled.
if (isVerticalSwipe) {
// Vertical overscroll has been temporarily disabled until bug 939480 is
// fixed.
return false;
}