Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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. });