viewfeed: fix typo
This commit is contained in:
parent
17eb362b96
commit
77c3c5f9fa
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue