Merge pull request #1584 from Squidly271/patch-10

Allow CA to override the "DONE" button appearing during multi installs / updates
This commit is contained in:
tom mortensen
2024-01-20 13:16:10 -08:00
committed by GitHub

View File

@@ -408,6 +408,12 @@ function openDone(data) {
if (data == '_DONE_') {
$('div.spinner.fixed').hide();
$('button.confirm').text("<?=_('Done')?>").prop('disabled',false).show();
if ( typeof ca_done_override !== 'undefined' ) {
if (ca_done_override == true) {
$("button.confirm").trigger("click");
ca_done_override = false;
}
}
return true;
}
return false;