diff --git a/app/modules/user-timeline/user-timeline-item/user-timeline-item-title.service.coffee b/app/modules/user-timeline/user-timeline-item/user-timeline-item-title.service.coffee index 406b57eb..b19769ed 100644 --- a/app/modules/user-timeline/user-timeline-item/user-timeline-item-title.service.coffee +++ b/app/modules/user-timeline/user-timeline-item/user-timeline-item-title.service.coffee @@ -130,10 +130,14 @@ class UserTimelineItemTitle _getLink: (url, text, title) -> title = title || text + span = $('') + .attr('ng-non-bindable', true) + .text(text) + return $('') .attr('tg-nav', url) - .text(text) .attr('title', title) + .append(span) .prop('outerHTML') _getUsernameSpan: (text) ->