Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save lpellegr/418d67045cea4f5d425f9f1089255e4f to your computer and use it in GitHub Desktop.
Save lpellegr/418d67045cea4f5d425f9f1089255e4f 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