mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-07 06:25:50 +01:00
tx translation update
This commit is contained in:
@@ -23,11 +23,11 @@ define(function() {
|
||||
var image = '';
|
||||
for (x = 0; x < numUnread; x++) {
|
||||
if (data.unread[x].image) {
|
||||
image = '<img src="' + data.unread[x].image + '" />';
|
||||
image = '<img class="image" src="' + data.unread[x].image + '" />';
|
||||
} else {
|
||||
image = '';
|
||||
}
|
||||
notifList.append($('<li class="' + data.unread[x].readClass + '"><a href="' + data.unread[x].path + '">' + image + '<span class="pull-right relTime">' + utils.relativeTime(data.unread[x].datetime, true) + '</span><span class="text">' + data.unread[x].text + '</span></a></li>'));
|
||||
notifList.append($('<li class="' + (data.unread[x].readClass || '') + '"><a href="' + data.unread[x].path + '">' + image + '<span class="pull-right relTime">' + utils.relativeTime(data.unread[x].datetime, true) + '</span><span class="text">' + data.unread[x].text + '</span></a></li>'));
|
||||
}
|
||||
|
||||
for (x = 0; x < numRead; x++) {
|
||||
|
||||
Reference in New Issue
Block a user