]> git.wh0rd.org - tt-rss.git/commitdiff
fix tabs
authorAndrew Dolgov <fox@madoka.volgo-balt.ru>
Fri, 22 Mar 2013 05:40:02 +0000 (09:40 +0400)
committerAndrew Dolgov <fox@madoka.volgo-balt.ru>
Fri, 22 Mar 2013 05:40:02 +0000 (09:40 +0400)
index.php
js/tt-rss.js

index 4669a2080f540781652514504c29434f1e8f8e27..570bba6d4738454c3997d160a4fa78269081c8b4 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 91aff8b6878ba55da30f8f8afbb38c2c5f79891c..b7bb9319b6a1e8babe9d602ed4963db5c10806e3 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;