added profile func, shorter getRecentReplies

v1.18.x
Baris Soner Usakli 11 years ago
parent 466c02a886
commit c94da47ae8

@ -15,6 +15,8 @@ define(['composer'], function(composer) {
app.enterRoom('category_' + cid);
twitterEl.on('click', function () {
window.open(twitterUrl, '_blank', 'width=550,height=420,scrollbars=no,status=no');
return false;
@ -143,29 +145,22 @@ define(['composer'], function(composer) {
return;
}
var recent_replies = document.getElementById('category_recent_replies');
recent_replies.innerHTML = '';
var frag = document.createDocumentFragment(),
li = document.createElement('li');
for (var i = 0, numPosts = posts.length; i < numPosts; i++) {
var recentReplies = $('#category_recent_replies');
var reply;
for (var i = 0, numPosts = posts.length; i < numPosts; ++i) {
li.setAttribute('data-pid', posts[i].pid);
li.innerHTML = '<a href="' + RELATIVE_PATH + '/user/' + posts[i].userslug + '"><img title="' + posts[i].username + '" class="img-rounded user-img" src="' + posts[i].picture + '"/></a>' +
reply = $('<li data-pid="'+ posts[i].pid +'">' +
'<a href="' + RELATIVE_PATH + '/user/' + posts[i].userslug + '"><img title="' + posts[i].username + '" class="img-rounded user-img" src="' + posts[i].picture + '"/></a>' +
'<a href="' + RELATIVE_PATH + '/topic/' + posts[i].topicSlug + '#' + posts[i].pid + '">' +
'<strong><span>'+ posts[i].username + '</span></strong>' +
'<p>' +
posts[i].content +
'</p>' +
'<p>' + posts[i].content + '</p>' +
'</a>' +
'<span class="timeago pull-right" title="' + posts[i].relativeTime + '"></span>';
'<span class="timeago pull-right" title="' + posts[i].relativeTime + '"></span>' +
'</li>');
frag.appendChild(li.cloneNode(true));
recent_replies.appendChild(frag);
recentReplies.append(reply);
}
$('#category_recent_replies span.timeago').timeago();
app.createUserTooltips();
};

@ -6,6 +6,12 @@
if ('undefined' === typeof window) {
fs = require('fs');
XRegExp = require('xregexp').XRegExp;
process.profile = function(operation, start) {
var diff = process.hrtime(start);
console.log('%s took %d milliseconds', operation, diff[0] * 1e3 + diff[1] / 1e6);
}
} else {
XRegExp = window.XRegExp;
}

Loading…
Cancel
Save