You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nextcloud-server/apps/calendar/js/settings.js

11 lines
337 B

$(document).ready(function(){
$("#timezone").change( function(){
OC.msg.startSaving('#calendar .msg')
// Serialize the data
var post = $( "#timezone" ).serialize();
$.post( oc_webroot + '/apps/calendar/ajax/settimezone.php', post, function(data){
OC.msg.finishedSaving('#calendar .msg', data);
});
return false;
});
});