maxailloud / confirm-bootstrap

The confirm modal made with Twitter Bootstrap
http://maxailloud.github.io/confirm-bootstrap/
35 stars 18 forks source link

dynamic title and message #10

Closed ben-nsng closed 9 years ago

ben-nsng commented 9 years ago

Hi,

I think the title and message can be set dynamically. I also make some changes. Example:

$(".btn-del").confirmModal({
    confirmMessage: function() {
        return 'Are you sure you want to delete this item "' + $(this).attr('data-name') + '"?';
    }
});
maxailloud commented 9 years ago

Thanks.