Last active
December 20, 2015 14:19
-
-
Save ryrych/6145566 to your computer and use it in GitHub Desktop.
Ember.js Gravatar Component. Original version: http://plnkr.co/edit/QbhyrcXZ6LbGzVFfEzD4 by cavneb with further changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
App.GravatarImageComponent = Ember.Component.extend | |
tagName: '' | |
email: '' | |
size: 200 | |
gravatarUrl: (-> | |
email = @get 'email' | |
size = @get 'size' | |
"http://www.gravatar.com/avatar/#{MD5(@get 'email')}#{?s=@get('size')}" | |
).property('email', 'size') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment