1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-20 11:16:36 +02:00

viewfeed: only focus headlines tab when offset == 0

This commit is contained in:
Andrew Dolgov 2011-09-21 09:41:06 +04:00
parent b3e8867c65
commit 0612ce2388

View File

@ -66,8 +66,9 @@ function viewfeed(feed, subop, is_cat, offset, background) {
else
cached_headlines = cache_get("feed:" + feed + ":" + is_cat);
dijit.byId("content-tabs").selectChild(
dijit.byId("content-tabs").getChildren()[0]);
if (offset == 0)
dijit.byId("content-tabs").selectChild(
dijit.byId("content-tabs").getChildren()[0]);
var force_nocache = false;