server/apps/files_sharing/js/settings-admin.js
2015-04-09 12:07:05 +02:00

12 lines
279 B
JavaScript

$(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'});
});