bootbox.js ダイアログのボタンにアイコンを追加する方法を理解した人はいますか? この関数の「いいえ」ボタンと「はい」ボタンにアイコンを追加したいと思います。
$(function () {
$(".confirm-delete").click(function(e) {
e.preventDefault();
var id = $(this).data('id')
bootbox.confirm("Remove this product?", "No", "Yes", function(confirmed) {
if(confirmed) {
deleteRecord(id);
}
});
});
});