2012-04-25 19:51:18 +04:00
|
|
|
$(document).ready(function() {
|
|
|
|
$('#allowResharing').bind('change', function() {
|
|
|
|
var checked = 1;
|
2012-04-25 22:35:30 +04:00
|
|
|
if (!this.checked) {
|
2012-04-25 19:51:18 +04:00
|
|
|
checked = 0;
|
|
|
|
}
|
|
|
|
$.post(OC.filePath('files_sharing','ajax','toggleresharing.php'), 'resharing='+checked);
|
|
|
|
});
|
|
|
|
});
|