1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-13 17:15:55 +00:00

Revert "fix tabs"

This reverts commit d6cb941459.
This commit is contained in:
Andrew Dolgov
2013-03-23 09:48:07 +04:00
parent c1353b6384
commit b68dce191f
2 changed files with 6 additions and 6 deletions

View File

@@ -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;