display current feed in title (only in daemon mode for now)
This commit is contained in:
parent
9da1e3be20
commit
dcca5d13a0
2 changed files with 3 additions and 2 deletions
|
@ -1549,6 +1549,7 @@
|
||||||
|
|
||||||
print "<script type=\"text/javascript\">
|
print "<script type=\"text/javascript\">
|
||||||
document.onkeydown = hotkey_handler;
|
document.onkeydown = hotkey_handler;
|
||||||
|
if (parent.daemon_enabled) parent.updateTitle('$feed_title');
|
||||||
update_all_counters('$feed');
|
update_all_counters('$feed');
|
||||||
</script>";
|
</script>";
|
||||||
|
|
||||||
|
|
|
@ -342,7 +342,7 @@ function localHotkeyHandler(keycode) {
|
||||||
function updateTitle(s) {
|
function updateTitle(s) {
|
||||||
var tmp = "Tiny Tiny RSS";
|
var tmp = "Tiny Tiny RSS";
|
||||||
|
|
||||||
if (s && s.length > 0) {
|
if (s != undefined) {
|
||||||
current_subtitle = s;
|
current_subtitle = s;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -350,7 +350,7 @@ function updateTitle(s) {
|
||||||
tmp = tmp + " (" + global_unread + ")";
|
tmp = tmp + " (" + global_unread + ")";
|
||||||
}
|
}
|
||||||
|
|
||||||
if (s) {
|
if (current_subtitle) {
|
||||||
tmp = tmp + " - " + current_subtitle;
|
tmp = tmp + " - " + current_subtitle;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue