mirror of
https://framagit.org/tom79/fediplan.git
synced 2025-04-05 05:31:48 +02:00
Store timezone in session
This commit is contained in:
parent
85e409a481
commit
79f1ab4f66
1 changed files with 11 additions and 1 deletions
|
@ -485,6 +485,7 @@
|
|||
$('#compose_attach_poll').val(0);
|
||||
}
|
||||
});
|
||||
|
||||
var $collectionHolder;
|
||||
|
||||
// setup an "add a tag" link
|
||||
|
@ -543,8 +544,17 @@
|
|||
searchPosition: "bottom",
|
||||
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').on('change', function () {
|
||||
sessionStorage.setItem("timeZone", this.value);
|
||||
});
|
||||
$(document).on('click', '.delete_media', function () {
|
||||
var id = $(this).attr('data-id');
|
||||
$('#media_container_' + id).remove();
|
||||
|
|
Loading…
Add table
Reference in a new issue