summaryrefslogtreecommitdiff
path: root/js/tt-rss.js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-23 09:51:30 +0400
committerAndrew Dolgov <[email protected]>2013-03-23 09:51:30 +0400
commit99534a3dde1bd488c193d84c11a0a886bee0fda4 (patch)
tree139869e516ece984a7097defdc5af77c74cbcb98 /js/tt-rss.js
parent9972b7cdd7b438f84b6ee6d8b30bc9124133b0c4 (diff)
remove page title stuff for the time being
Diffstat (limited to 'js/tt-rss.js')
-rw-r--r--js/tt-rss.js6
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;