settings.js 242 B

123456789
  1. $(document).ready(function() {
  2. $('#allowResharing').bind('change', function() {
  3. var checked = 1;
  4. if (!this.checked) {
  5. checked = 0;
  6. }
  7. $.post(OC.filePath('files_sharing','ajax','toggleresharing.php'), 'resharing='+checked);
  8. });
  9. });