Now using gravatars on the interface under posts beside names

This commit is contained in:
Isaac Bythewood
2013-02-22 02:54:04 +00:00
parent 7420e8eea1
commit 899de27165
3 changed files with 2 additions and 3 deletions

View File

@@ -143,9 +143,6 @@ body {
width: 30px;
height: 30px;
background-color: #555;
border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
}
.pin-footer .text {

View File

@@ -70,6 +70,7 @@ $(window).load(function() {
// Set which items are editable by the current user
for (var i=0; i < pins.objects.length; i++)
pins.objects[i].editable = (pins.objects[i].submitter.username == currentUser);
console.log(pins.objects);
// Use the fetched pins as our context for our pins template
var template = Handlebars.compile($('#pins-template').html());

View File

@@ -31,6 +31,7 @@
{{/if}}
<div class="pin-footer clearfix">
<div class="avatar pull-left">
<img src="http://gravatar.com/avatar/{{submitter.gravatar}}.jpg">
</div>
<div class="text pull-right">
<span class="dim">pinned by</span> {{submitter.username}}