diff --git a/CHANGELOG.md b/CHANGELOG.md index 3c278030..f8982fee 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed ### Removed ### Fixed +- issue-65: Fixed footprints and previews disappearing from map when not intended ## [4.17.1] diff --git a/src/hitideConfig.js b/src/hitideConfig.js index 43686899..26cab1cd 100644 --- a/src/hitideConfig.js +++ b/src/hitideConfig.js @@ -1,4 +1,5 @@ var hitideProfileOrigin = "https://hitide.profile.podaac.uat.earthdatacloud.nasa.gov/hitide/api"; +// var hitideProfileOrigin = "http://localhost:8080/hitide/api"; window.hitideConfig = { paletteService: "https://hitide.podaac.earthdatacloud.nasa.gov/palettes", @@ -10,7 +11,7 @@ window.hitideConfig = { cmrVariableService: hitideProfileOrigin + "/cmr/graphql", crossOriginCmrCookies: true, - authCodeUrl: "https://uat.urs.earthdata.nasa.gov/oauth/authorize", + authCodeUrl: "https://urs.earthdata.nasa.gov/oauth/authorize", loginUrl: hitideProfileOrigin + "/session/login", logoutUrl: hitideProfileOrigin + "/session/logout", @@ -24,5 +25,5 @@ window.hitideConfig = { datasetSearchServiceItemsPerPage: 200, maxGranulesPerDownload: 999999999, googleTagManagerId: "GTM-M5D83V6", - earthDataAppClientId: "dxpH2WeN_f8IpNLgHwplsg" + earthDataAppClientId: "mn6VmRfej3U2Tm0UhbC1jw" }; diff --git a/src/jpl/dijit/GranulesController.js b/src/jpl/dijit/GranulesController.js index b7da8df2..f52896a5 100644 --- a/src/jpl/dijit/GranulesController.js +++ b/src/jpl/dijit/GranulesController.js @@ -78,6 +78,7 @@ define([ _granuleSearchInProgress: false, loadingGranulesMessage: '
Loading Granules...
', noGranulesMessage: '
No Granules Found
', + scrollLoadInProgress: false, constructor: function() { this.datasetVariables = {}; @@ -757,14 +758,17 @@ define([ stateStoreItemsToRemove.push((currentStateStore[j])) } } - for(var k=0; k 0.90) { this.currentSolrIdx += this.itemsPerPage; + this.scrollLoadInProgress = true; this.fetchGranules(); } },