mirror of
https://github.com/nextcloud/all-in-one.git
synced 2025-12-19 22:16:49 +00:00
15 lines
539 B
JavaScript
15 lines
539 B
JavaScript
|
|
function makeOptionsFormSubmitVisible() {
|
||
|
|
var optionsFormSubmit = document.getElementById("options-form-submit");
|
||
|
|
optionsFormSubmit.style.display = 'block';
|
||
|
|
}
|
||
|
|
|
||
|
|
document.addEventListener("DOMContentLoaded", function(event) {
|
||
|
|
// handle submit button for options form
|
||
|
|
var optionsFormSubmit = document.getElementById("options-form-submit");
|
||
|
|
optionsFormSubmit.style.display = 'none';
|
||
|
|
|
||
|
|
// Clamav
|
||
|
|
var clamav = document.getElementById("clamav");
|
||
|
|
clamav.addEventListener('change', makeOptionsFormSubmitVisible);
|
||
|
|
});
|