Build navigational tabs as HTML table
[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]