Sha256: 8de965c4a38670d9efecb18aeaaf243774b23ff176cb6a056fbae80787d94627

Contents?: true

Size: 409 Bytes

Versions: 3

Compression:

Stored size: 409 Bytes

Contents

module HeaderPatch
  def build_site_title
    arbre_content_for :site_title do
      super
    end
  end

  def build_global_navigation
    arbre_content_for :global_navigation do
      super
    end
  end

  def build_utility_navigation
    arbre_content_for :utility_navigation do
      super
    end
  end
end

module ActiveAdmin
  module Views
    class Header
      prepend HeaderPatch
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
activeadmin_custom_layout-0.1.3 lib/activeadmin_custom_layout/layout/header.rb
activeadmin_custom_layout-0.1.1 lib/activeadmin_custom_layout/layout/header.rb
activeadmin_custom_layout-0.1.0 lib/activeadmin_custom_layout/layout/header.rb