Last active
June 9, 2017 14:12
-
-
Save robdodson/bab25f5286d0ebc13c48 to your computer and use it in GitHub Desktop.
polymer gravatar
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
<polymer-element name="user-gravatar" attributes="email"> | |
<template> | |
<img src="https://secure.gravatar.com/avatar/{{gid}}" /> | |
</template> | |
<script> | |
Polymer('user-gravatar', { | |
ready: function() { | |
this.gid = md5(this.email); | |
} | |
}); | |
</script> | |
</polymer> | |
<!-- usage --> | |
<user-gravatar email="[email protected]"></user-gravatar> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment