Sha256: 238971d2e558c1e209d4f95e0de71bbede6e03b53428b8ac4b27d9b8bd1c1182
Contents?: true
Size: 378 Bytes
Versions: 46
Compression:
Stored size: 378 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, keep_on_hover: true, click_open: false }, title: title, &block) end end end
Version data entries
46 entries across 46 versions & 1 rubygems