backbone.bootstrap-modal
backbone.bootstrap-modal copied to clipboard
An example on how to use it would be nice
For people with little Backbone experience.
Thanks.
Some sort of this one should get you done:
var modal = new Backbone.BootstrapModal({
title : "My first modal",
content : "This is my content",
animate : true,
focusOk : false,
okCloses : true,
allowCancel: true
});
modal.open();