summaryrefslogtreecommitdiff
path: root/lib/sidebars/concerns/has_hint.rb
blob: dc4f765e974c296770b534c6a78e06a5a8d82f24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# frozen_string_literal: true

# This module has the necessary methods to store
# hints for menus. Hints are elements displayed
# when the user hover the menu item.
module Sidebars
  module Concerns
    module HasHint
      def show_hint?
        false
      end

      def hint_html_options
        {}
      end
    end
  end
end