add gravatars

This commit is contained in:
Matias Alejo Garcia 2014-11-11 16:53:30 -03:00
commit 99dd65ed07
6 changed files with 20 additions and 6 deletions

View file

@ -23,6 +23,7 @@ var modules = [
'monospaced.qrcode',
'ngIdle',
'gettext',
'ui.gravatar',
'copayApp.filters',
'copayApp.services',
'copayApp.controllers',
@ -44,6 +45,15 @@ copayApp.config(function($sceDelegateProvider) {
]);
});
angular.module('ui.gravatar').config([
'gravatarServiceProvider', function(gravatarServiceProvider) {
gravatarServiceProvider.defaults = {
size : 35
};
// Use https endpoint
gravatarServiceProvider.secure = true;
}
]);
angular.module('copayApp.filters', []);
angular.module('copayApp.services', []);