Welcome to mirror list, hosted at ThFree Co, Russian Federation.

settings-admin.js « js « federatedfilesharing « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a0b8feb945e70f581cacedca069c2a957dbf9660 (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';
		}
		OCP.AppConfig.setValue('files_sharing', $(this).attr('name'), value);
	});

});