]> git.openstreetmap.org Git - nominatim-ui.git/blobdiff - src/lib/api_utils.js
last update -x ago-, spinner for loading indicator (#83)
[nominatim-ui.git] / src / lib / api_utils.js
index 70acda6c858689b6bd821b6ce896c294f928a8c6..8470b0b7b2873d99bc7640e097afaa96dee1e51f 100644 (file)
@@ -7,7 +7,7 @@ function api_request_progress(status) {
   var loading_el = document.getElementById('loading');
   if (!loading_el) return; // might not be on page yet
 
-  loading_el.style.display = (status === 'start') ? 'block' : 'none';
+  loading_el.style.display = (status === 'start') ? 'block' : null;
 }
 
 export async function fetch_from_api(endpoint_name, params, callback) {