mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-11 22:14:06 -05:00
5 lines
185 B
JavaScript
5 lines
185 B
JavaScript
|
|
document.addEventListener('DOMContentLoaded', function() {
|
||
|
|
var timeZone = Intl.DateTimeFormat().resolvedOptions().timeZone;
|
||
|
|
document.cookie = `timezone=${timeZone}; path=/`;
|
||
|
|
})
|