Module TabsHelper
In: app/helpers/tabs_helper.rb

Build navigational tabs as HTML table

Methods

tabs  

Classes and Modules

Class TabsHelper::Tab
Class TabsHelper::Tabs

Public Instance methods

[Source]

   # File app/helpers/tabs_helper.rb, line 3
3:   def tabs(select_current_page = true)
4:     tabs = Tabs.new(@controller)
5:     yield tabs
6:     tabs.to_html select_current_page
7:   end

[Validate]