summaryrefslogtreecommitdiff
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
parentc1353b6384ea44258c14f79cdaa8ea6e38a8ae51 (diff)
Revert "fix tabs"
This reverts commit d6cb94145945a47fc843ed9c25197b1ece40cdae.
-rw-r--r--index.php2
-rw-r--r--js/tt-rss.js10
2 files changed, 6 insertions, 6 deletions
diff --git a/index.php b/index.php
index 570bba6d4..4669a2080 100644
--- a/index.php
+++ b/index.php
@@ -53,7 +53,7 @@
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
- <title><?php echo get_site_title() ?></title>
+ <title><?php echo get_site_title() ?></title>
<?php echo stylesheet_tag("lib/dijit/themes/claro/claro.css"); ?>
<?php echo stylesheet_tag("tt-rss.css"); ?>
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;