aboutsummaryrefslogtreecommitdiffstats
path: root/apps/federatedfilesharing/js/settings-admin.js
blob: 257c864b04f7d84db0543513b5d63cefbb4b05b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
$(document).ready(function() {

	$('#fileSharingSettings input').change(function() {
		var value = 'no';
		if (this.checked) {
			value = 'yes';
		}
		OC.AppConfig.setValue('files_sharing', $(this).attr('name'), value);
	});

});