Sha256: 1ff079c6369f68300e6dfca284baff05036d3bd1203a8b3e31310185ce1d922e
Contents?: true
Size: 357 Bytes
Versions: 26
Compression:
Stored size: 357 Bytes
Contents
# frozen_string_literal: true module Decidim # This helper includes some methods to help with the inclusion of tooltips # on the layout. module TooltipHelper def with_tooltip(title, &block) content_tag(:span, data: { tooltip: true, disable_hover: false, click_open: false }, title: title, &block) end end end
Version data entries
26 entries across 26 versions & 1 rubygems