From edc3ceadacb2fe7e2c592fc49ed034b38900b324 Mon Sep 17 00:00:00 2001 From: Jean-Paul van Oosten Date: Wed, 18 Jun 2008 22:43:07 +0200 Subject: [PATCH] WebView now scrolls to the top on update Just added a call to the scroll-function in commit.js. --- html/commit.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/html/commit.js b/html/commit.js index 18d5f00..fe02d3b 100644 --- a/html/commit.js +++ b/html/commit.js @@ -68,4 +68,6 @@ var doeHet = function() { } else { $("details").innerHTML = "This is a large commit. Click here to show the diff."; } + + scroll(0, 0); }