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

settings.js « js « calendar « apps - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7c24fb0963f4092e4c191bc9e6d6c4e679633f2d (plain)
1
2
3
4
5
6
7
8
9
10
11
$(document).ready(function(){
	$("#timezone").change( function(){
		OC.msg.startSaving('#calendar .msg')
		// Serialize the data
		var post = $( "#timezone" ).serialize();
		$.post( OC.filePath('calendar', 'ajax', 'settimezone.php'), post, function(data){
			OC.msg.finishedSaving('#calendar .msg', data);
		});
		return false;
	});
});