blob: e6e99ee7e20665d172adaf517a3347bffc835e96 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* global jstz */
$(document).ready(function () {
$('#timezone-offset').val((-new Date().getTimezoneOffset() / 60));
$('#timezone').val(jstz.determine().name());
// 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);
}
}
);
|