change title pattern (fix #584)

This commit is contained in:
Athou
2014-04-19 06:31:41 +02:00
parent 32a30019a7
commit 1a9a80c0da

View File

@@ -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;
});