Module: EndView::Bootstrap
- Defined in:
- lib/end_view/bootstrap/modal.rb,
lib/end_view/bootstrap/tab_pane.rb,
lib/end_view/bootstrap/tabpanel.rb,
lib/end_view/bootstrap/form_group.rb,
lib/end_view/bootstrap/form_modal.rb,
lib/end_view/bootstrap/simple_form.rb,
lib/end_view/bootstrap/simple_form_modal.rb
Defined Under Namespace
Classes: FormGroup, FormModal, Modal, SimpleForm, SimpleFormModal, TabPane, Tabpanel
Class Method Summary
collapse
Class Method Details
7
8
9
|
# File 'lib/end_view/bootstrap/form_group.rb', line 7
def self.form_group(*args)
FormGroup.render(*args)
end
|
5
6
7
|
# File 'lib/end_view/bootstrap/form_modal.rb', line 5
def self.form_modal(*args, &b)
FormModal.render(*args, &b)
end
|
.modal(*args, &b) ⇒ Object
6
7
8
|
# File 'lib/end_view/bootstrap/modal.rb', line 6
def self.modal(*args, &b)
Modal.render(*args, &b)
end
|
8
9
10
|
# File 'lib/end_view/bootstrap/simple_form.rb', line 8
def self.simple_form(*args)
SimpleForm.render(*args)
end
|
7
8
9
|
# 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) ⇒ Object
6
7
8
|
# File 'lib/end_view/bootstrap/tab_pane.rb', line 6
def self.tab_pane(*args, &b)
TabPane.new(*args, &b)
end
|
.tabpanel(*args) ⇒ Object
7
8
9
|
# File 'lib/end_view/bootstrap/tabpanel.rb', line 7
def self.tabpanel(*args)
Tabpanel.new(*args)
end
|