Lines 65-72
function confirmModal(message, title, yes_label, no_label, callback) {
Link Here
|
65 |
</div>\ |
65 |
</div>\ |
66 |
<div class="modal-body"><p></p></div>\ |
66 |
<div class="modal-body"><p></p></div>\ |
67 |
<div class="modal-footer">\ |
67 |
<div class="modal-footer">\ |
68 |
<a href="#" id="bootstrap-confirm-box-modal-submit" class="btn btn-danger"><i class="fa fa-check"></i></a>\ |
68 |
<a href="#" id="bootstrap-confirm-box-modal-submit" class="btn btn-danger"><i class="fa fa-check" aria-hidden="true"></i></a>\ |
69 |
<a href="#" id="bootstrap-confirm-box-modal-cancel" data-dismiss="modal" class="btn btn-default"><i class="fa fa-remove"></i></a>\ |
69 |
<a href="#" id="bootstrap-confirm-box-modal-cancel" data-dismiss="modal" class="btn btn-default"><i class="fa fa-remove" aria-hidden="true"></i></a>\ |
70 |
</div>\ |
70 |
</div>\ |
71 |
</div>\ |
71 |
</div>\ |
72 |
</div>\ |
72 |
</div>\ |
Lines 86-89
function confirmModal(message, title, yes_label, no_label, callback) {
Link Here
|
86 |
$("#bootstrap-confirm-box-modal-submit").text( yes_label || 'Confirm' ); |
86 |
$("#bootstrap-confirm-box-modal-submit").text( yes_label || 'Confirm' ); |
87 |
$("#bootstrap-confirm-box-modal-cancel").text( no_label || 'Cancel' ); |
87 |
$("#bootstrap-confirm-box-modal-cancel").text( no_label || 'Cancel' ); |
88 |
$("#bootstrap-confirm-box-modal").modal('show'); |
88 |
$("#bootstrap-confirm-box-modal").modal('show'); |
89 |
} |
89 |
} |
90 |
- |
|
|