Welcome to mirror list, hosted at ThFree Co, Russian Federation.

has_hint.rb « sidebars « concerns « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 21dca39dca0a60b0779a66ed078d7357930cec2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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 HasHint
    def show_hint?
      false
    end

    def hint_html_options
      {}
    end
  end
end