mirror of
https://github.com/nextcloud/server.git
synced 2026-02-03 20:41:22 -05:00
11 lines
257 B
JavaScript
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);
|
|
});
|
|
|
|
});
|