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

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

	$('.section .icon-info').tipsy({gravity: 'w'});
});