From fb686df9b4c2f52f85360b0757886a14431c8e59 Mon Sep 17 00:00:00 2001 From: Athou Date: Tue, 9 Apr 2013 15:02:36 +0200 Subject: [PATCH] fix favicon size in ie --- src/main/webapp/css/app.css | 5 +++++ src/main/webapp/js/controllers.js | 2 +- src/main/webapp/js/directives.js | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) 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 : '' }; });