Commit a503ed2ccbc4a0c8c03b83dfc62324c5d006ef49
1 parent
910f5107
Exists in
master
and in
22 other branches
ActionItem658: work arround for ie users on profile lists
git-svn-id: https://svn.colivre.coop.br/svn/noosfero/branches/0.11.x@2490 3f533792-8f58-4932-b0fe-aaf55b0a4547
Showing
1 changed file
with
1 additions
and
0 deletions
Show diff stats
app/helpers/application_helper.rb
... | ... | @@ -431,6 +431,7 @@ module ApplicationHelper |
431 | 431 | content_tag( 'span', name, :class => ( profile.class == Person ? 'fn' : 'org' ) ) + |
432 | 432 | city + profile_sex_icon( profile ) + profile_cat_icons( profile ), |
433 | 433 | profile.url, |
434 | + :onclick => 'document.location.href = this.href', # work-arround for ie. | |
434 | 435 | :class => 'profile_link url', |
435 | 436 | :help => _('Click on this icon to go to the <b>%s</b>\'s home page') % profile.name ), |
436 | 437 | :class => 'vcard' | ... | ... |