summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/js/settings.js
blob: bb7d79fecbb24a2de090c0424c6a183b15018f97 (plain)
1
2
3
4
5
6
7
8
9
$(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);
	});
});