img class on recent_replies

This commit is contained in:
Baris Usakli
2013-07-03 16:10:48 -04:00
parent 5f8ca4aa6c
commit 20670e63d1

View File

@@ -78,7 +78,7 @@
username = posts[i].username,
picture = posts[i].picture;
ul.innerHTML = '<li><img title="' + username + '" style="width: 48px; height: 48px; /*temporary*/" src="' + picture + '" class="" />'
ul.innerHTML = '<li><img title="' + username + '" style="width: 48px; height: 48px; /*temporary*/" class="img-polaroid" src="' + picture + '" class="" />'
+ '<p><strong>' + username + '</strong>: ' + posts[i].content + '</p><span>posted ' + utils.relativeTime(posts[i].timestamp) + ' ago</span></li>';
a.appendChild(ul);