mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-15 09:42:57 -07:00
Prevent dismissing the changelog modal
This commit is contained in:
parent
38d7ea16b4
commit
acc59523e0
1 changed files with 4 additions and 1 deletions
|
@ -881,7 +881,10 @@
|
||||||
async: true,
|
async: true,
|
||||||
complete: function (xhr, status) {
|
complete: function (xhr, status) {
|
||||||
$("#changelog-modal .modal-body").html(xhr.responseText);
|
$("#changelog-modal .modal-body").html(xhr.responseText);
|
||||||
$('#changelog-modal').modal();
|
$('#changelog-modal').modal({
|
||||||
|
backdrop: 'static',
|
||||||
|
keyboard: false
|
||||||
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue