nextcloud/apps/federatedfilesharing/js/settings-admin.js
John Molakvoæ (skjnldsv) 6fcd075730
Use DOMContentLoaded and fix sharebymail loading issue
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
2020-07-20 12:42:08 +02:00

11 lines
257 B
JavaScript

window.addEventListener('DOMContentLoaded', function() {
$('#fileSharingSettings input').change(function() {
var value = 'no';
if (this.checked) {
value = 'yes';
}
OCP.AppConfig.setValue('files_sharing', $(this).attr('name'), value);
});
});