Adds title on links with target blank

This commit is contained in:
Alberto Garcia Cabeza
2016-03-14 18:22:17 +01:00
parent 9dce52a69a
commit f6571662a2
21 changed files with 50 additions and 42 deletions

View File

@@ -32,9 +32,9 @@
<p>
<%= t("layouts.application.ie",
chrome: link_to(
t("layouts.application.chrome"), "https://www.google.com/chrome/browser/desktop/", target: "_blank"),
t("layouts.application.chrome"), "https://www.google.com/chrome/browser/desktop/", title: t("shared.target_blank_html"), target: "_blank"),
firefox: link_to(
t("layouts.application.firefox"), "https://www.mozilla.org/firefox", target: "_blank")
t("layouts.application.firefox"), "https://www.mozilla.org/firefox", title: t("shared.target_blank_html"), target: "_blank")
).html_safe %>
</p>
</div>