Skip to content

Instantly share code, notes, and snippets.

@derfel
Forked from robdodson/gist:bab25f5286d0ebc13c48
Created February 22, 2016 02:12
Show Gist options
  • Save derfel/1c7de22ee9dbdf67b427 to your computer and use it in GitHub Desktop.
Save derfel/1c7de22ee9dbdf67b427 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="[email protected]"></user-gravatar>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment