From ea8a5def8c42a973f19dfc0f7e0d733f331e660a Mon Sep 17 00:00:00 2001 From: Athou Date: Tue, 9 Apr 2013 08:40:36 +0200 Subject: [PATCH] better label --- 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 5c037cc8..5cf12742 100644 --- a/src/main/webapp/js/controllers.js +++ b/src/main/webapp/js/controllers.js @@ -118,7 +118,7 @@ module.controller('CategoryTreeCtrl', function($scope, $timeout, $stateParams, $scope.$watch(rootUnreadCount, function(value) { var label = 'CommaFeed'; if (value > 0) { - label = '(' + value + ') ' + label; + label = value + ' - ' + label; } $window.document.title = label; });