allow timeago to be cast on other elements as well, ex. small

This commit is contained in:
psychobunny
2015-03-16 17:22:44 -04:00
parent 82ac542f55
commit 412c5360a6
15 changed files with 16 additions and 16 deletions

View File

@@ -122,7 +122,7 @@ define('forum/chats', ['string', 'sounds', 'forum/infinitescroll'], function(S,
function onMessagesParsed(html) {
var newMessage = $(html);
newMessage.insertBefore($('.user-typing'));
newMessage.find('span.timeago').timeago();
newMessage.find('.timeago').timeago();
newMessage.find('img:not(".chat-user-image")').addClass('img-responsive');
Chats.scrollToBottom($('.expanded-chat .chat-content'));
}