mirror of
https://github.com/pinry/pinry.git
synced 2026-01-22 23:32:29 +01:00
Now using gravatars on the interface under posts beside names
This commit is contained in:
@@ -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 {
|
||||
|
||||
@@ -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());
|
||||
|
||||
@@ -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}}
|
||||
|
||||
Reference in New Issue
Block a user