Fix confirm modal click handler triggering multiple times

This commit is contained in:
JonnyWong16 2021-11-13 22:24:12 -08:00
parent 876741b40b
commit e9762cdef6
No known key found for this signature in database
GPG key ID: B1F1F9807184697A

View file

@ -102,7 +102,7 @@ function showMsg(msg, loader, timeout, ms, error) {
function confirmAjaxCall(url, msg, data, loader_msg, callback) {
$("#confirm-message").html(msg);
$('#confirm-modal').modal();
$('#confirm-modal').one('click', '#confirm-button', function () {
$('#confirm-modal').off('click', '#confirm-button').one('click', '#confirm-button', function () {
if (loader_msg) {
showMsg(loader_msg, true, false);
}