Store timezone in session

This commit is contained in:
Thomas 2024-05-13 11:13:28 +02:00
parent 85e409a481
commit 79f1ab4f66

View file

@ -485,6 +485,7 @@
$('#compose_attach_poll').val(0); $('#compose_attach_poll').val(0);
} }
}); });
var $collectionHolder; var $collectionHolder;
// setup an "add a tag" link // setup an "add a tag" link
@ -543,8 +544,17 @@
searchPosition: "bottom", searchPosition: "bottom",
search: false search: false
}); });
var timezone = Intl.DateTimeFormat().resolvedOptions().timeZone; var timezone;
if(!!sessionStorage.getItem('timeZone')) {
timezone = sessionStorage.getItem('timeZone');
} else {
timezone = Intl.DateTimeFormat().resolvedOptions().timeZone;
}
$('#compose_timeZone').val(timezone); $('#compose_timeZone').val(timezone);
$('#compose_timeZone').on('change', function () {
sessionStorage.setItem("timeZone", this.value);
});
$(document).on('click', '.delete_media', function () { $(document).on('click', '.delete_media', function () {
var id = $(this).attr('data-id'); var id = $(this).attr('data-id');
$('#media_container_' + id).remove(); $('#media_container_' + id).remove();