1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 13:25:54 +00:00

add placeholder update checker using git changesets

This commit is contained in:
Andrew Dolgov
2015-02-03 14:39:15 +03:00
parent 47cdc58c60
commit efcc5d365d
4 changed files with 47 additions and 0 deletions

View File

@@ -767,6 +767,16 @@ function parse_runtime_info(data) {
return;
}
if (k == "update_result") {
var updatesIcon = dijit.byId("updatesIcon").domNode;
if (v != "") {
Element.show(updatesIcon);
} else {
Element.hide(updatesIcon);
}
}
if (k == "daemon_stamp_ok" && v != 1) {
notify_error("<span onclick=\"javascript:explainError(3)\">Update daemon is not updating feeds.</span>", true);
return;