summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Dolgov <[email protected]>2013-03-21 22:17:32 +0400
committerAndrew Dolgov <[email protected]>2013-03-21 22:17:32 +0400
commit3a693fa76f0cc6a38aa5642a08b48f58c29758bc (patch)
tree128d744e7bbb7e9b3d27000a63153c1e855a3520
parent5c81e817d342d8a8d806c850b0f3ed051e923661 (diff)
updateTitle: show counter before title
-rw-r--r--js/tt-rss.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/tt-rss.js b/js/tt-rss.js
index b58c36705..eaa1f3daf 100644
--- a/js/tt-rss.js
+++ b/js/tt-rss.js
@@ -181,7 +181,7 @@ function updateTitle() {
var tmp = "Tiny Tiny RSS";
if (global_unread > 0) {
- tmp = tmp + " (" + global_unread + ")";
+ tmp = "(" + global_unread + ") " + tmp;
}
if (window.fluid) {