2011-06-05 17:13:03 +04:00
|
|
|
//send the clients time zone to the server
|
|
|
|
$(document).ready(function() {
|
|
|
|
var visitortimezone = (-new Date().getTimezoneOffset()/60);
|
|
|
|
$.ajax({
|
|
|
|
type: "GET",
|
2012-04-23 18:17:35 +04:00
|
|
|
url: OC.filePath('files', 'ajax', 'timezone.php'),
|
2011-06-05 17:13:03 +04:00
|
|
|
data: 'time='+ visitortimezone,
|
|
|
|
success: function(){
|
|
|
|
location.reload();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|