fix tabs
This commit is contained in:
parent
1f56ba13cd
commit
d6cb941459
2 changed files with 6 additions and 6 deletions
|
@ -53,7 +53,7 @@
|
||||||
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
<html>
|
<html>
|
||||||
<head>
|
<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("lib/dijit/themes/claro/claro.css"); ?>
|
||||||
<?php echo stylesheet_tag("tt-rss.css"); ?>
|
<?php echo stylesheet_tag("tt-rss.css"); ?>
|
||||||
|
|
10
js/tt-rss.js
10
js/tt-rss.js
|
@ -178,11 +178,11 @@ function search() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function updateTitle() {
|
function updateTitle() {
|
||||||
var tmp = document.title;
|
var tmp = document.title;
|
||||||
if (tmp.indexOf(")") > 0)
|
|
||||||
{
|
if (tmp.indexOf(")") > 0) {
|
||||||
tmp = tmp.substr(tmp.indexOf(")") + 1);
|
tmp = tmp.substr(tmp.indexOf(")") + 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (global_unread > 0) {
|
if (global_unread > 0) {
|
||||||
tmp = "(" + global_unread + ") " + tmp;
|
tmp = "(" + global_unread + ") " + tmp;
|
||||||
|
|
Loading…
Reference in a new issue