Skip to content

Commit c16c792

Browse files
Fix viewer and globe splitter icons (#850)
* Fix viewer and globe splitter icons * chore: bump version to 4.2.5-20260114 [version bump] --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 928a5f0 commit c16c792

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

configure/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "configure",
3-
"version": "4.2.4-20260113",
3+
"version": "4.2.5-20260114",
44
"homepage": "./configure/build",
55
"private": true,
66
"dependencies": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mmgis",
3-
"version": "4.2.4-20260113",
3+
"version": "4.2.5-20260114",
44
"description": "A web-based mapping and localization solution for science operation on planetary missions.",
55
"homepage": "build",
66
"repository": {

src/essence/Basics/UserInterface_/UserInterfaceDefault_.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -410,10 +410,10 @@ var UserInterface = {
410410
.html('Viewer')
411411
this.mapSplitInner.append(mapSplitInnerViewerInfo)
412412

413-
this.mapSplitInner
414-
.append('div')
413+
const mapSplitInnerVMapInfo = $('<div>')
415414
.attr('id', 'mapSplitInnerVMapInfo')
416415
.html('Map')
416+
this.mapSplitInner.append(mapSplitInnerVMapInfo)
417417

418418
//The globe screen
419419
this.globeScreen = $('<div>')
@@ -552,10 +552,10 @@ var UserInterface = {
552552
.html('Globe')
553553
this.globeSplitInner.append(mapSplitInnerGlobeInfo)
554554

555-
this.globeSplitInner
556-
.append('div')
555+
const mapSplitInnerGMapInfo = $('<div>')
557556
.attr('id', 'mapSplitInnerGMapInfo')
558557
.html('Map')
558+
this.globeSplitInner.append(mapSplitInnerGMapInfo)
559559

560560
//thumb lines
561561
/*

0 commit comments

Comments
 (0)