]> git.openstreetmap.org Git - rails.git/blobdiff - app/helpers/browse_helper.rb
Using ruby helpers to construct html, changed div to span
[rails.git] / app / helpers / browse_helper.rb
index 1fce5f0b3e296bd979de7052b4f66704d2a58bb9..2f07fd2ebe3278e45b05b1759458ea34551e4dc5 100644 (file)
@@ -77,7 +77,7 @@ module BrowseHelper
     elsif url = telephone_link(key, value)
       link_to h(value), url, :title => t("browse.tag_details.telephone_link", :phone_number => value)
     elsif colour_value = colour_preview(key, value)
-      %( <div class="colour-preview-box" style="background-color:#{h(value)}" title="#{h(t('browse.tag_details.colour_preview', :colour_value => colour_value))}"></div>#{h(value)} ).html_safe # rubocop:disable Rails/OutputSafety
+      content_tag(:span, "", :class => "colour-preview-box", :style => "background-color:#{colour_value}", :title => t("browse.tag_details.colour_preview", :colour_value => colour_value)) + colour_value
     else
       linkify h(value)
     end