Skip to content

Commit

Permalink
Implemented configuration mechanism, added method for fetching data…
Browse files Browse the repository at this point in the history
… used by all other dataSets implementations
  • Loading branch information
innovator-dev committed Jan 21, 2024
1 parent 1716ad9 commit cddf5db
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions assets/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -672,7 +672,7 @@ const app = (() => {
map.ref.panTo(new google.maps.LatLng(lat, lng));
}

}, (err) => {
}, () => {

try {
// Clear marker
Expand Down Expand Up @@ -700,7 +700,7 @@ const app = (() => {

// Show warning that location coult not be determined
if (app.config.messages['location.error.unableToDetermine']) {
throw app.config.messages['location.error.unableToDetermine'];
notification(app.config.messages['location.error.unableToDetermine'], 'error', 10);
}

} catch (err) {
Expand Down
8 changes: 4 additions & 4 deletions assets/js/app.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit cddf5db

Please sign in to comment.