You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

settings-admin.js 257B

1234567891011
  1. window.addEventListener('DOMContentLoaded', function() {
  2. $('#fileSharingSettings input').change(function() {
  3. var value = 'no';
  4. if (this.checked) {
  5. value = 'yes';
  6. }
  7. OCP.AppConfig.setValue('files_sharing', $(this).attr('name'), value);
  8. });
  9. });