diff --git a/src/main/webapp/css/app.css b/src/main/webapp/css/app.css
index 1c3d22b7..e73a8fe0 100644
--- a/src/main/webapp/css/app.css
+++ b/src/main/webapp/css/app.css
@@ -8,6 +8,11 @@
cursor: pointer;
}
+.favicon {
+ width: 16px;
+ height: 16px;
+}
+
.toolbar {
padding-top: 10px;
padding-bottom: 10px;
diff --git a/src/main/webapp/js/controllers.js b/src/main/webapp/js/controllers.js
index 0a73457d..08cbf00e 100644
--- a/src/main/webapp/js/controllers.js
+++ b/src/main/webapp/js/controllers.js
@@ -97,7 +97,7 @@ module.controller('CategoryTreeCtrl', function($scope, $timeout, $stateParams,
SubscriptionService.init(function() {
$timeout(refreshTree, 15000);
});
- }, 30000);
+ }, 15000);
$scope.SubscriptionService = SubscriptionService;
diff --git a/src/main/webapp/js/directives.js b/src/main/webapp/js/directives.js
index 2c5a4c8f..aacf401a 100644
--- a/src/main/webapp/js/directives.js
+++ b/src/main/webapp/js/directives.js
@@ -7,7 +7,7 @@ module.directive('favicon', function() {
url : '='
},
replace : true,
- template : '
'
+ template : '
'
};
});