Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion configure/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "configure",
"version": "4.1.8-20251110",
"version": "4.1.9-20251111",
"homepage": "./configure/build",
"private": true,
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mmgis",
"version": "4.1.8-20251110",
"version": "4.1.9-20251111",
"description": "A web-based mapping and localization solution for science operation on planetary missions.",
"homepage": "build",
"repository": {
Expand Down
6 changes: 3 additions & 3 deletions src/essence/Ancillary/Coordinates.js
Original file line number Diff line number Diff line change
Expand Up @@ -826,10 +826,10 @@ function toggleTimeUI() {
$('#toggleTimeUI').toggleClass('active')
$('#timeUI').toggleClass('active')

const defaultExpanded = $('#timeUI').hasClass('defaultExpanded')
const timeUIHeight = defaultExpanded ? 145 : 0
const defaultExpanded = $('#timeUI').hasClass('defaultExpanded') || $('#timeUI').hasClass('expanded')
const timeUIHeight = defaultExpanded ? 165 : 60
const newBottom = !active ? timeUIHeight : 0
const timeBottom = 0
const timeBottom = active ? -40 : 16

Map_.map._fadeAnimated = active

Expand Down
6 changes: 3 additions & 3 deletions src/essence/Ancillary/TimeUI.js
Original file line number Diff line number Diff line change
Expand Up @@ -3049,10 +3049,10 @@ const TimeUI = {

const active = !$('#toggleTimeUI').hasClass('active')

const defaultExpanded = $('#timeUI').hasClass('expanded')
const timeUIHeight = defaultExpanded ? 145 : 40
const defaultExpanded = $('#timeUI').hasClass('defaultExpanded') || $('#timeUI').hasClass('expanded')
const timeUIHeight = defaultExpanded ? 165 : 60
const newBottom = !active ? timeUIHeight : 0
const timeBottom = 0
const timeBottom = 16

$('#CoordinatesDiv').css({
bottom: newBottom + (UserInterface_.pxIsTools || 0) + 'px',
Expand Down