Add rel="nofollow" to bio links (fixes #449)

This commit is contained in:
Sajjad Hasehmian 2016-01-11 13:29:01 +03:30
parent bd1d05ee2c
commit 15398fcc6d

View File

@ -17,7 +17,7 @@ Object.assign(User.prototype, {
avatarUrl: Model.attribute('avatarUrl'), avatarUrl: Model.attribute('avatarUrl'),
bio: Model.attribute('bio'), bio: Model.attribute('bio'),
bioHtml: computed('bio', bio => bio ? '<p>' + $('<div/>').text(bio).html().replace(/\n/g, '<br>').autoLink() + '</p>' : ''), bioHtml: computed('bio', bio => bio ? '<p>' + $('<div/>').text(bio).html().replace(/\n/g, '<br>').autoLink({rel: 'nofollow'}) + '</p>' : ''),
preferences: Model.attribute('preferences'), preferences: Model.attribute('preferences'),
groups: Model.hasMany('groups'), groups: Model.hasMany('groups'),