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

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

View File

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