-
-
Save lpellegr/418d67045cea4f5d425f9f1089255e4f 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