summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--backend.php1
-rw-r--r--tt-rss.js4
2 files changed, 3 insertions, 2 deletions
diff --git a/backend.php b/backend.php
index 16705f47a..30467d95a 100644
--- a/backend.php
+++ b/backend.php
@@ -1549,6 +1549,7 @@
print "<script type=\"text/javascript\">
document.onkeydown = hotkey_handler;
+ // if (parent.daemon_enabled) parent.updateTitle('$feed_title');
update_all_counters('$feed');
</script>";
diff --git a/tt-rss.js b/tt-rss.js
index 961c6df49..1e5573f90 100644
--- a/tt-rss.js
+++ b/tt-rss.js
@@ -342,7 +342,7 @@ function localHotkeyHandler(keycode) {
function updateTitle(s) {
var tmp = "Tiny Tiny RSS";
- if (s && s.length > 0) {
+ if (s != undefined) {
current_subtitle = s;
}
@@ -350,7 +350,7 @@ function updateTitle(s) {
tmp = tmp + " (" + global_unread + ")";
}
- if (s) {
+ if (current_subtitle) {
tmp = tmp + " - " + current_subtitle;
}