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

do not try to load feedlist before receiving init-params

This commit is contained in:
Andrew Dolgov 2012-01-31 16:01:43 +04:00
parent 983702546e
commit 118f41806f

View File

@ -283,16 +283,6 @@ function init() {
dojo.parser.parse(); dojo.parser.parse();
dojo.addOnLoad(function() {
updateFeedList();
closeArticlePanel();
if (typeof themeAfterLayout == 'function') {
themeAfterLayout();
}
});
if (!genericSanityCheck()) if (!genericSanityCheck())
return false; return false;
@ -314,6 +304,15 @@ function init() {
function init_second_stage() { function init_second_stage() {
try { try {
dojo.addOnLoad(function() {
updateFeedList();
closeArticlePanel();
if (typeof themeAfterLayout == 'function') {
themeAfterLayout();
}
});
delCookie("ttrss_test"); delCookie("ttrss_test");