From b68dce191f8f7b1d63444a83b8a38b927d4e66f0 Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Sat, 23 Mar 2013 09:48:07 +0400 Subject: [PATCH] Revert "fix tabs" This reverts commit d6cb94145945a47fc843ed9c25197b1ece40cdae. --- index.php | 2 +- js/tt-rss.js | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/index.php b/index.php index 570bba6d..4669a208 100644 --- a/index.php +++ b/index.php @@ -53,7 +53,7 @@ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> - <?php echo get_site_title() ?> + <?php echo get_site_title() ?> diff --git a/js/tt-rss.js b/js/tt-rss.js index b7bb9319..91aff8b6 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; -- 2.39.5