#Maxwell Modal
##Bootstrap and Backbone Powered Modal Views
##Install
npm install maxwell-modal
##Usage
There are three types of modals available
Modal
This is the basic modal. It has two types of configurations
- Content
- Header, Body, Footer
{
footer: null,
header: null,
content: null,
body: null,
onShow: null,
onHide: null,
dismissable : true,
title: null,
yesLabel : 'Yes',
onNo : null,
noLabel : 'No',
onYes : null
}
####Content
If the content property is present it will operate in content mode.
var ContentModal = MaxwellModal.Modal.extend({
content: 'fooo',
onShow: onShow
});
var contentView = new ContentModal();
$('body').append(contentView.render().el);
This will create a modal that contains the word foo and nothing else.
Content can take a DOM element, rendered html, rendered backbone view, handlebars template output or a function.
####Header,Body,Footer
Header,Body,Footer works similarly except it uses 3 different views for each section of the bootstrap modal.
var ContentModal = MaxwellModal.Modal.extend({
header: headerTemplate({
title: 'FOO BAR BAZ'
}),
body: $('<div><button>FOO</button></div>').html(),
onShow: onShow
});
var contentView = new ContentModal();
$('body').append(contentView.render().el);
Note the handlebars template for the header, rendered html for the body.
These could take a rendered backbone view.
###Confirm Modal
A replacement for the confirm box
####Options
{
body: null,
onShow: null,
onHide: null,
dismissable : true,
title: null,
yesLabel : 'Yes',
onNo : null,
noLabel : 'No',
onYes : null
}
var ContentModal = MaxwellModal.ConfirmModal.extend({
onShow: onShow,
onHide: onHide,
onYes: onYes,
onNo: onNo,
body: 'Are you sure you want to continue',
title: 'Continue?',
yesLabel: 'okey dokie'
});
This produces a modal with two buttons, yes and no. their labels are configurable as well as what occurs on yes and on no.
###Alert Modal
A replacement for the alert box
####Options
{
body: null,
onShow: null,
onHide: null,
dismissable : true,
title: null,
yesLabel : 'Yes',
onYes : null
}
var ContentModal = MaxwellModal.AlertModal.extend({
onShow: onShow,
onHide: onHide,
onYes: onYes,
body: 'Your computer is about to explode.',
title: 'Explosion?',
yesLabel: 'OK'
});
##TODO