Skip to content

Instantly share code, notes, and snippets.

@robdodson
Last active June 9, 2017 14:12
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save robdodson/bab25f5286d0ebc13c48 to your computer and use it in GitHub Desktop.
Save robdodson/bab25f5286d0ebc13c48 to your computer and use it in GitHub Desktop.
polymer gravatar
<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="foo@bar.com"></user-gravatar>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment