mirror of
https://github.com/rr-/szurubooru.git
synced 2025-07-17 08:26:24 +00:00
Improved image and thumbnail loading
This commit is contained in:
@ -77,10 +77,12 @@ App.Presenters.UserListPresenter = function(
|
||||
}
|
||||
|
||||
_.each(users, function(user) {
|
||||
$target.append(jQuery('<li>' + templates.listItem({
|
||||
var $item = jQuery('<li>' + templates.listItem({
|
||||
user: user,
|
||||
formatRelativeTime: util.formatRelativeTime,
|
||||
}) + '</li>'));
|
||||
}) + '</li>');
|
||||
util.loadImagesNicely($item.find('img'));
|
||||
$target.append($item);
|
||||
});
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user