mirror of
https://github.com/nextcloud/server.git
synced 2026-06-27 01:20:37 -04:00
16 lines
No EOL
483 B
JavaScript
16 lines
No EOL
483 B
JavaScript
$(document).ready(function() {
|
|
$('#allowResharing').bind('change', function() {
|
|
var checked = 1;
|
|
if (!this.checked) {
|
|
checked = 0;
|
|
}
|
|
$.post(OC.filePath('files_sharing','ajax','toggleresharing.php'), 'resharing='+checked);
|
|
});
|
|
$('#allowSharingWithEveryone').bind('change', function() {
|
|
var checked = 1;
|
|
if (!this.checked) {
|
|
checked = 0;
|
|
}
|
|
$.post(OC.filePath('files_sharing','ajax','togglesharewitheveryone.php'), 'allowSharingWithEveryone='+checked);
|
|
});
|
|
}); |