2020-07-20 13:30:35 +03:00
|
|
|
window.addEventListener('DOMContentLoaded', function() {
|
2014-06-12 21:49:52 +04:00
|
|
|
|
|
|
|
$('#fileSharingSettings input').change(function() {
|
|
|
|
var value = 'no';
|
|
|
|
if (this.checked) {
|
|
|
|
value = 'yes';
|
|
|
|
}
|
2016-09-20 12:17:13 +03:00
|
|
|
OCP.AppConfig.setValue('files_sharing', $(this).attr('name'), value);
|
2014-06-12 21:49:52 +04:00
|
|
|
});
|
|
|
|
|
|
|
|
});
|