'use strict'; angular.module('copayApp.directives') .directive('gravatar', function(md5) { return { restrict: 'AE', replace: true, scope: { name: '@', height: '@', width: '@', email: '@' }, link: function(scope, el, attr) { scope.emailHash = md5.createHash(scope.email || ''); }, template: '{{ name }}' } });