X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/a182820139de22196d7f30e06047a81afc7323f5..61c3d97a8ad2891bef0a2eeaa0d60e625b6c2ef2:/app/helpers/notifier_helper.rb diff --git a/app/helpers/notifier_helper.rb b/app/helpers/notifier_helper.rb index 2915a0880..c18f79903 100644 --- a/app/helpers/notifier_helper.rb +++ b/app/helpers/notifier_helper.rb @@ -5,15 +5,15 @@ module NotifierHelper def link_to_user(display_name) link_to( - content_tag( - "strong", + tag.strong( display_name, # NB we need "text-decoration: none" twice: GMail only honours it on # the but Outlook only on the :style => "text-decoration: none" ), - user_url(display_name, :host => SERVER_URL), + user_url(display_name, :host => Settings.server_url), :target => "_blank", + :rel => "noopener", :style => "text-decoration: none; color: #222" ) end @@ -31,4 +31,12 @@ module NotifierHelper # we apply it once here, after the message has been composed. html.gsub(/

/, '

') end + + def style_left + I18n.t("html.dir") == "ltr" ? "left" : "right" + end + + def style_right + I18n.t("html.dir") == "ltr" ? "right" : "left" + end end