Explorar el Código

Now using gravatars on the interface under posts beside names

tags/v1.0.0
Isaac Bythewood hace 11 años
padre
commit
899de27165
Se han modificado 3 ficheros con 2 adiciones y 3 borrados
  1. +0
    -3
      pinry/core/static/core/css/pinry.css
  2. +1
    -0
      pinry/core/static/core/js/pinry.js
  3. +1
    -0
      pinry/pins/templates/pins/recent_pins.html

+ 0
- 3
pinry/core/static/core/css/pinry.css Ver fichero

@@ -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 {


+ 1
- 0
pinry/core/static/core/js/pinry.js Ver fichero

@@ -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());


+ 1
- 0
pinry/pins/templates/pins/recent_pins.html Ver fichero

@@ -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}}


Cargando…
Cancelar
Guardar