module EndView::Bootstrap

Public Class Methods

form_group(*args) click to toggle source
# File lib/end_view/bootstrap/form_group.rb, line 7
def self.form_group(*args)
  FormGroup.render(*args)
end
form_modal(*args, &b) click to toggle source
# File lib/end_view/bootstrap/form_modal.rb, line 5
def self.form_modal(*args, &b)
  FormModal.render(*args, &b)
end
modal(*args, &b) click to toggle source
simple_form(*args) click to toggle source
# File lib/end_view/bootstrap/simple_form.rb, line 8
def self.simple_form(*args)
  SimpleForm.render(*args)
end
simple_form_modal(*args) click to toggle source
# File lib/end_view/bootstrap/simple_form_modal.rb, line 7
def self.simple_form_modal(*args)
  SimpleFormModal.render(*args)
end
tab_pane(*args, &b) click to toggle source
# File lib/end_view/bootstrap/tab_pane.rb, line 6
def self.tab_pane(*args, &b)
  TabPane.new(*args, &b)
end
tabpanel(*args) click to toggle source
# File lib/end_view/bootstrap/tabpanel.rb, line 7
def self.tabpanel(*args)
  Tabpanel.new(*args)
end