From acc59523e00f1fd2ca31d8a25bcecd8f7624608b Mon Sep 17 00:00:00 2001 From: JonnyWong16 Date: Fri, 11 Oct 2019 22:55:23 -0700 Subject: [PATCH] Prevent dismissing the changelog modal --- data/interfaces/default/index.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/data/interfaces/default/index.html b/data/interfaces/default/index.html index a28e3f4f..24e9ae5d 100644 --- a/data/interfaces/default/index.html +++ b/data/interfaces/default/index.html @@ -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 + }); } });