nextcloud/files/js/timezone.js

12 lines
279 B
JavaScript

//send the clients time zone to the server
$(document).ready(function() {
var visitortimezone = (-new Date().getTimezoneOffset()/60);
$.ajax({
type: "GET",
url: "ajax/timezone.php",
data: 'time='+ visitortimezone,
success: function(){
location.reload();
}
});
});