diff --git a/reviewboard/static/rb/js/pages/views/diffViewerPageView.js b/reviewboard/static/rb/js/pages/views/diffViewerPageView.js
index f5c4452c6500e1128b891e0f0171bc370fb43ff6..cdc07ee2572cb5a356b0d9c52e5b15117c1dbcc8 100644
--- a/reviewboard/static/rb/js/pages/views/diffViewerPageView.js
+++ b/reviewboard/static/rb/js/pages/views/diffViewerPageView.js
@@ -372,15 +372,11 @@ RB.DiffViewerPageView = RB.ReviewablePageView.extend({
         }
 
         if (scroll !== false) {
-            location.hash = "#" + $anchor.attr("name");
-
-            scrollAmount = this.DIFF_SCROLLDOWN_AMOUNT;
 
-            if (RB.DraftReviewBannerView.instance) {
-                scrollAmount += RB.DraftReviewBannerView.instance.getHeight();
-            }
+            location.hash = "#" + $anchor.attr("name");
+            $(window).scrollTop($anchor.offset().top -
+                                this.DIFF_SCROLLDOWN_AMOUNT);
 
-            $(window).scrollTop($anchor.offset().top - scrollAmount);
         }
 
         this._highlightAnchor($anchor);
