Browse Source

switched to html()

master
toyg 11 years ago
parent
commit
0cf2b79a0c
  1. 3
      twister_formatpost.js

3
twister_formatpost.js

@ -116,8 +116,7 @@ function dmDataToSnippetItem(dmData, remoteUser) {
dmItem.find("a.dm-chat-link").attr("href", $.MAL.dmchatUrl(remoteUser)); dmItem.find("a.dm-chat-link").attr("href", $.MAL.dmchatUrl(remoteUser));
getAvatar( remoteUser, dmItem.find(".post-photo").find("img") ); getAvatar( remoteUser, dmItem.find(".post-photo").find("img") );
getFullname( remoteUser, dmItem.find("a.post-info-name") ); getFullname( remoteUser, dmItem.find("a.post-info-name") );
var mentions = []; dmItem.find(".post-text").html(escapeHtmlEntities(dmData.text));
htmlFormatMsg(dmData.text, dmItem.find(".post-text"), mentions);
dmItem.find(".post-info-time").text(timeGmtToText(dmData.time)); dmItem.find(".post-info-time").text(timeGmtToText(dmData.time));
dmItem.find(".post-info-time").attr("title",timeSincePost(dmData.time)); dmItem.find(".post-info-time").attr("title",timeSincePost(dmData.time));

Loading…
Cancel
Save