1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-20 03:51:29 +00:00

misc typo fixes

This commit is contained in:
Andrew Dolgov
2011-12-10 21:26:59 +04:00
parent e6f1a1b747
commit e331188f76
15 changed files with 49 additions and 67 deletions

View File

@@ -490,8 +490,6 @@ function parse_runtime_info(data) {
return;
}
var error_flag;
if (k == "daemon_is_running" && v != 1) {
notify_error("<span onclick=\"javascript:explainError(1)\">Update daemon is not running.</span>", true);
return;
@@ -521,7 +519,7 @@ function catchupCurrentFeed() {
var str = __("Mark all articles in %s as read?").replace("%s", fn);
if (getInitParam("confirm_feed_catchup") != 1 || confirm(str)) {
return viewCurrentFeed('MarkAllRead')
return viewCurrentFeed('MarkAllRead');
}
}
@@ -534,7 +532,7 @@ function catchupFeedInGroup(id) {
var str = __("Mark all articles in %s as read?").replace("%s", title);
if (getInitParam("confirm_feed_catchup") != 1 || confirm(str)) {
return viewCurrentFeed('MarkAllReadGR:' + id)
return viewCurrentFeed('MarkAllReadGR:' + id);
}
} catch (e) {
@@ -566,11 +564,11 @@ function collapse_feedlist() {
}
function viewModeChanged() {
return viewCurrentFeed('')
return viewCurrentFeed('');
}
function viewLimitChanged() {
return viewCurrentFeed('')
return viewCurrentFeed('');
}
/* function adjustArticleScore(id, score) {
@@ -628,7 +626,7 @@ function hotkey_handler(e) {
if (e.target.nodeName == "INPUT" || e.target.nodeName == "TEXTAREA") return;
var keycode;
var keycode = false;
var shift_key = false;
var cmdline = $('cmdline');
@@ -780,7 +778,7 @@ function hotkey_handler(e) {
}
if (keycode == 85) { // u
selectionToggleUnread(undefined, false, true)
selectionToggleUnread(undefined, false, true);
return;
}