mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-23 00:21:28 +00:00
misc typo fixes
This commit is contained in:
@@ -321,8 +321,10 @@ function viewfeed(feed_id, offset, replace, no_effects, no_indicator, callback)
|
||||
|
||||
console.log(query);
|
||||
|
||||
var img = false;
|
||||
|
||||
if ($("F-" + feed_id)) {
|
||||
var img = $("F-" + feed_id).getElementsByTagName("IMG")[0];
|
||||
img = $("F-" + feed_id).getElementsByTagName("IMG")[0];
|
||||
|
||||
if (img && !no_indicator) {
|
||||
img.setAttribute("orig_src", img.src);
|
||||
@@ -545,7 +547,7 @@ function parse_feeds(transport) {
|
||||
feeds.sort( function (a,b)
|
||||
{
|
||||
if (b.unread != a.unread)
|
||||
return (b.unread - a.unread)
|
||||
return (b.unread - a.unread);
|
||||
else
|
||||
if (a.title > b.title)
|
||||
return 1;
|
||||
|
||||
Reference in New Issue
Block a user