From 3c53e3972ebe721c7e58a95f403426503f827fa1 Mon Sep 17 00:00:00 2001 From: Gerd Flaig Date: Sun, 8 Nov 2009 16:36:57 +0100 Subject: [PATCH] Use scrollIntoView instead of scrollMaxY --- static/eow.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/eow.js b/static/eow.js index 2379559..631894f 100644 --- a/static/eow.js +++ b/static/eow.js @@ -11,7 +11,7 @@ function setup() { function eowOut(output) { $("#output").append("
" + output + "
"); - window.scrollTo(0, window.scrollMaxY); + $("input")[0].scrollIntoView(false); } function get_next_update() { -- 2.43.0