Extend default link_to helper to add noreferrer html_option.

This commit is contained in:
Marin Jankovski 2014-05-29 12:49:15 +02:00
parent 749d198f10
commit 3910b5917c
1 changed files with 14 additions and 0 deletions

View File

@ -231,4 +231,18 @@ module ApplicationHelper
content_tag(:i, nil, class: 'icon-spinner icon-spin') + text
end
end
def link_to(name = nil, options = nil, html_options = nil, &block)
if html_options
if html_options[:rel]
html_options[:rel] << " noreferrer"
else
html_options.merge(rel: "noreferrer")
end
else
html_options = Hash.new
html_options[:rel] = "noreferrer"
end
super
end
end