blob: d9b63a108798456c060cdb0640a3ca009cf2ae94 (
plain)
1
2
3
4
5
6
7
8
9
10
|
$(document).ready(function () {
var visitortimezone = (-new Date().getTimezoneOffset() / 60);
$('#timezone-offset').val(visitortimezone);
// only enable the submit button once we are sure that the timezone is set
var $loginForm = $('form[name="login"]');
if ($loginForm.length) {
$loginForm.find('input#submit').prop('disabled', false);
}
});
|