You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

visitortimezone.js 385B

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