class Tabulous::CombinedRenderer

Public Instance Methods

subtabs_html() click to toggle source
# File lib/tabulous/renderers/combined_renderer.rb, line 11
def subtabs_html
  msg = "You have called the subtabs view helper. "
  msg << "However, the renderer that you've chosen does not support "
  msg << "this view helper, since this renderer renders subtabs when "
  msg << "the tabs helper is called. Simply remove the call to "
  msg << "subtabs to fix this error."
  raise SubtabsHelperNotApplicable, msg
end