fix favicon size in ie

This commit is contained in:
Athou
2013-04-09 15:02:36 +02:00
parent 8a2d529476
commit fb686df9b4
3 changed files with 7 additions and 2 deletions

View File

@@ -8,6 +8,11 @@
cursor: pointer; cursor: pointer;
} }
.favicon {
width: 16px;
height: 16px;
}
.toolbar { .toolbar {
padding-top: 10px; padding-top: 10px;
padding-bottom: 10px; padding-bottom: 10px;

View File

@@ -97,7 +97,7 @@ module.controller('CategoryTreeCtrl', function($scope, $timeout, $stateParams,
SubscriptionService.init(function() { SubscriptionService.init(function() {
$timeout(refreshTree, 15000); $timeout(refreshTree, 15000);
}); });
}, 30000); }, 15000);
$scope.SubscriptionService = SubscriptionService; $scope.SubscriptionService = SubscriptionService;

View File

@@ -7,7 +7,7 @@ module.directive('favicon', function() {
url : '=' url : '='
}, },
replace : true, replace : true,
template : '<img ng-src="favicon?url={{url}}" width="16" height="16"></img>' template : '<img ng-src="favicon?url={{url}}" class="favicon"></img>'
}; };
}); });