mirror of
https://github.com/nextcloud/all-in-one.git
synced 2024-11-15 19:44:31 +08:00
26c042fd28
Signed-off-by: Simon L <szaimen@e.mail.de>
7 lines
240 B
JavaScript
7 lines
240 B
JavaScript
document.addEventListener("DOMContentLoaded", function(event) {
|
|
// timezone
|
|
let timezone = document.getElementById("timezone");
|
|
if (timezone) {
|
|
timezone.value = Intl.DateTimeFormat().resolvedOptions().timeZone
|
|
}
|
|
});
|