summaryrefslogtreecommitdiff
path: root/js
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-23 09:48:07 +0400
committerAndrew Dolgov <[email protected]>2013-03-23 09:48:07 +0400
commitb68dce191f8f7b1d63444a83b8a38b927d4e66f0 (patch)
tree14379825c79cc68c2f2200cb65d5b6f4628ab093 /js
parentc1353b6384ea44258c14f79cdaa8ea6e38a8ae51 (diff)
Revert "fix tabs"
This reverts commit d6cb94145945a47fc843ed9c25197b1ece40cdae.
Diffstat (limited to 'js')
-rw-r--r--js/tt-rss.js10
1 files changed, 5 insertions, 5 deletions
diff --git a/js/tt-rss.js b/js/tt-rss.js
index b7bb9319b..91aff8b68 100644
--- a/js/tt-rss.js
+++ b/js/tt-rss.js
@@ -178,11 +178,11 @@ function search() {
}
function updateTitle() {
- var tmp = document.title;
-
- if (tmp.indexOf(")") > 0) {
- tmp = tmp.substr(tmp.indexOf(")") + 1);
- }
+ var tmp = document.title;
+ if (tmp.indexOf(")") > 0)
+ {
+ tmp = tmp.substr(tmp.indexOf(")") + 1);
+ }
if (global_unread > 0) {
tmp = "(" + global_unread + ") " + tmp;