mirror of
https://github.com/nextcloud/server.git
synced 2026-03-08 18:28:16 +01:00
12 lines
257 B
JavaScript
12 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);
|
|
});
|
|
|
|
});
|