diff options
| author | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2013-03-23 09:51:30 +0400 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2013-03-23 09:51:30 +0400 |
| commit | 99534a3dde1bd488c193d84c11a0a886bee0fda4 (patch) | |
| tree | 139869e516ece984a7097defdc5af77c74cbcb98 /js | |
| parent | 9972b7cdd7b438f84b6ee6d8b30bc9124133b0c4 (diff) | |
remove page title stuff for the time being
Diffstat (limited to 'js')
| -rw-r--r-- | js/tt-rss.js | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/js/tt-rss.js b/js/tt-rss.js index 1d6540dbb..eaa1f3daf 100644 --- a/js/tt-rss.js +++ b/js/tt-rss.js @@ -178,11 +178,7 @@ function search() { } function updateTitle() { - var tmp = document.title; - if (tmp.indexOf('(')>0) - { - tmp = tmp.substr(0,tmp.lastIndexOf('(')); - } + var tmp = "Tiny Tiny RSS"; if (global_unread > 0) { tmp = "(" + global_unread + ") " + tmp; |