Prevent dismissing the changelog modal

This commit is contained in:
JonnyWong16 2019-10-11 22:55:23 -07:00
parent 38d7ea16b4
commit acc59523e0

View file

@ -881,7 +881,10 @@
async: true,
complete: function (xhr, status) {
$("#changelog-modal .modal-body").html(xhr.responseText);
$('#changelog-modal').modal();
$('#changelog-modal').modal({
backdrop: 'static',
keyboard: false
});
}
});
</script>