backbone.bootstrap-modal icon indicating copy to clipboard operation
backbone.bootstrap-modal copied to clipboard

An example on how to use it would be nice

Open sfermigier opened this issue 12 years ago • 1 comments

For people with little Backbone experience.

Thanks.

sfermigier avatar Dec 08 '12 10:12 sfermigier

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

kersten avatar Jan 29 '13 11:01 kersten