From 63653662e0230c4932cd3eb6674cd07bb5cce1d7 Mon Sep 17 00:00:00 2001 From: psychobunny Date: Thu, 2 Apr 2015 16:14:28 -0400 Subject: [PATCH] a should have the title, not img part 1 of https://github.com/NodeBB/nodebb-theme-persona/issues/38 --- public/src/client/topic/browsing.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/src/client/topic/browsing.js b/public/src/client/topic/browsing.js index 5cb71960ea..2a0eb1eac5 100644 --- a/public/src/client/topic/browsing.js +++ b/public/src/client/topic/browsing.js @@ -83,14 +83,14 @@ define('forum/topic/browsing', ['translator'], function(translator) { activeEl.append(userEl); } - activeEl.find('a[data-uid] img').tooltip({ + activeEl.find('a[data-uid]').tooltip({ placement: 'top' }); } function createUserIcon(uid, picture, userslug, username) { if(!$('[component="topic/browsing/list"]').find('[data-uid="' + uid + '"]').length) { - return $('
'); + return $('
'); } }