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

viewfeed: fix typo

This commit is contained in:
Andrew Dolgov 2011-12-10 21:43:03 +04:00
parent 17eb362b96
commit 77c3c5f9fa

View File

@ -48,7 +48,7 @@ function loadMoreHeadlines() {
}
function viewfeed(feed, subop, is_cat, offset, background, infscrol_req) {
function viewfeed(feed, subop, is_cat, offset, background, infscroll_req) {
try {
if (is_cat == undefined)
is_cat = false;
@ -58,7 +58,7 @@ function viewfeed(feed, subop, is_cat, offset, background, infscrol_req) {
if (subop == undefined) subop = '';
if (offset == undefined) offset = 0;
if (background == undefined) background = false;
if (infscrol_req == undefined) infscrol_req = false;
if (infscroll_req == undefined) infscroll_req = false;
last_requested_article = 0;
@ -209,7 +209,7 @@ function viewfeed(feed, subop, is_cat, offset, background, infscrol_req) {
parameters: query,
onComplete: function(transport) {
setFeedExpandoIcon(feed, is_cat, 'images/blank_icon.gif');
headlines_callback2(transport, offset, background, infscrol_req);
headlines_callback2(transport, offset, background, infscroll_req);
} });
} catch (e) {