Sha256: bab3876175df8adc000183800601a6c702baa022c7c57dabdc31ebbfc7fb4075
Contents?: true
Size: 413 Bytes
Versions: 124
Compression:
Stored size: 413 Bytes
Contents
# frozen_string_literal: true module Renalware module NavigationHelper # Path here must be already resolved to a string using url_for # e.g. Engine.routes.url_for({controller: .., action: .., only_path: true}) def sub_nav_item(label, path) current_page = current_page?(path) content_tag(:dd, class: ("active" if current_page)) do link_to label, path end end end end
Version data entries
124 entries across 124 versions & 1 rubygems