Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 942 Bytes

BaseBodyView.md

File metadata and controls

26 lines (16 loc) · 942 Bytes

BackboneBootstrapModals.BaseBodyView

BaseBodyView is the default implementation of a body view.

Documentation Index

BaseBodyView's options

This view is specified with the following options. These can be specified as properties when extending the class or passed in as options when instantiating this class.

Property Description Default
text The text to in the modal body in within a p tag

NOTE: While BaseHeaderView and BaseFooterView should be able to be leveraged as-is in many use cases -- it is expected that BaseBodyView would usually be replaced or extended by most applications.

Example:

view = new BackboneBootstrapModals.BaseBodyView({
  text: "hello world"
});