Sha256: 37554798ec99508475a11396188b88439a8aed88aed7838a2a9d1b4f0ffc3d64
Contents?: true
Size: 772 Bytes
Versions: 27
Compression:
Stored size: 772 Bytes
Contents
module Renalware module TooltipHelper def tooltip(label:, content:) content_tag(:span, title: content, class: "has-tip", "aria-haspopup" => "true", data: { tooltip: "", options: "disable_for_touch:true" }) do label end end def tooltip_with_block(label:) content_tag(:span, title: label, class: "has-tip", "aria-haspopup" => "true", data: { tooltip: "", options: "disable_for_touch: true; hover_delay: 100;" }) do yield if block_given? end end end end
Version data entries
27 entries across 27 versions & 1 rubygems