]> git.wh0rd.org - tt-rss.git/commitdiff
Revert "fix tabs"
authorAndrew Dolgov <fox@madoka.volgo-balt.ru>
Sat, 23 Mar 2013 05:48:07 +0000 (09:48 +0400)
committerAndrew Dolgov <fox@madoka.volgo-balt.ru>
Sat, 23 Mar 2013 05:48:07 +0000 (09:48 +0400)
This reverts commit d6cb94145945a47fc843ed9c25197b1ece40cdae.

index.php
js/tt-rss.js

index 570bba6d4738454c3997d160a4fa78269081c8b4..4669a2080f540781652514504c29434f1e8f8e27 100644 (file)
--- 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"); ?>
index b7bb9319b6a1e8babe9d602ed4963db5c10806e3..91aff8b6878ba55da30f8f8afbb38c2c5f79891c 100644 (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;