This commit is contained in:
Julian Lam
2013-07-15 16:19:27 -04:00
parent 743e0569c1
commit 7ec8358369
3 changed files with 24 additions and 15 deletions

View File

@@ -152,7 +152,14 @@
padding: 5px 5px 5px 0px; padding: 5px 5px 5px 0px;
li { li {
clear: both;
line-height: 16px; line-height: 16px;
margin-bottom: 1em;
&:last-child {
margin-bottom: 0;
}
img { img {
display: block; display: block;
float: left; float: left;
@@ -162,8 +169,10 @@
padding-left:5px; padding-left:5px;
overflow: hidden; overflow: hidden;
height: 32px; height: 32px;
margin-bottom: 0.5em;
} }
span { span {
font-size: 12px;
display: block; display: block;
overflow: hidden; overflow: hidden;
height: 16px; height: 16px;

View File

@@ -71,20 +71,20 @@
recent_replies.innerHTML = ''; recent_replies.innerHTML = '';
for (var i=0, ii=posts.length; i<ii; i++) { var frag = document.createDocumentFragment(),
li = document.createElement('li');
for (var i=0,numPosts=posts.length; i<numPosts; i++) {
var dateString = utils.relativeTime(posts[i].timestamp);
li.setAttribute('data-pid', posts[i].pid);
li.innerHTML = '<img title="' + posts[i].username + '" style="width: 48px; height: 48px; /*temporary*/" class="img-polaroid" src="' + posts[i].picture + '" class="" />' +
'<p>' +
'<strong>' + posts[i].username + '</strong>: ' + posts[i].content +
'</p>' +
'<span>posted ' + utils.relativeTime(posts[i].timestamp) + ' ago</span>';
var a = document.createElement('a'), frag.appendChild(li.cloneNode(true));
ul = document.createElement('ul'), recent_replies.appendChild(frag);
username = posts[i].username,
picture = posts[i].picture;
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);
recent_replies.appendChild(a);
} }
}); });
})(); })();

View File

@@ -63,8 +63,8 @@
<div class="block-header"> <div class="block-header">
Recent Replies Recent Replies
</div> </div>
<div class="block-content recent-replies" id="category_recent_replies"> <div class="block-content recent-replies">
<ul id="category_recent_replies"></ul>
</div> </div>
</div> </div>
<div class="sidebar-block img-polaroid"> <div class="sidebar-block img-polaroid">