From 1a9a80c0da3d62bf0b21a0e9939f1692b2ee9821 Mon Sep 17 00:00:00 2001 From: Athou Date: Sat, 19 Apr 2014 06:31:41 +0200 Subject: [PATCH] change title pattern (fix #584) --- src/main/webapp/js/controllers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/webapp/js/controllers.js b/src/main/webapp/js/controllers.js index 6a83afd6..c1292161 100644 --- a/src/main/webapp/js/controllers.js +++ b/src/main/webapp/js/controllers.js @@ -196,7 +196,7 @@ module.controller('CategoryTreeCtrl', [ $scope.$watch(rootUnreadCount, function(value) { var label = 'CommaFeed'; if (value > 0) { - label = value + ' - ' + label; + label = '(' + value + ') ' + label; } $window.document.title = label; });