powmedia / backbone.bootstrap-modal

Bootstrap Modal wrapper for use with Backbone.
MIT License
183 stars 97 forks source link

An example on how to use it would be nice #20

Open sfermigier opened 11 years ago

sfermigier commented 11 years ago

For people with little Backbone experience.

Thanks.

kersten commented 11 years ago

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();