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: 33e03af6a0de12fb918c65058ac02808f7dfb7b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
window.addEventListener('DOMContentLoaded', function() {

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

});