mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-24 20:11:28 +00:00
scroll headlines and content container to top on update
This commit is contained in:
@@ -19,6 +19,9 @@ function headlines_callback() {
|
||||
if (xmlhttp.readyState == 4) {
|
||||
debug("headlines_callback");
|
||||
var f = document.getElementById("headlines-frame");
|
||||
try {
|
||||
f.scrollTop = 0;
|
||||
} catch (e) { };
|
||||
f.innerHTML = xmlhttp.responseText;
|
||||
update_all_counters();
|
||||
if (typeof correctPNG != 'undefined') {
|
||||
@@ -32,6 +35,9 @@ function article_callback() {
|
||||
if (xmlhttp.readyState == 4) {
|
||||
debug("article_callback");
|
||||
var f = document.getElementById("content-frame");
|
||||
try {
|
||||
f.scrollTop = 0;
|
||||
} catch (e) { };
|
||||
f.innerHTML = xmlhttp.responseText;
|
||||
if (typeof correctPNG != 'undefined') {
|
||||
correctPNG();
|
||||
|
||||
Reference in New Issue
Block a user