We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f95667b commit 891f3f9Copy full SHA for 891f3f9
assets/js/script.js
@@ -225,7 +225,7 @@ async function setupTable() {
225
* Create HTML loading container
226
* @return {String} the HTML loading screen template
227
*/
228
- function renderLoadingContainer() {
+ function displayLoadingContainer() {
229
return `
230
<div class='l-loading-container'>
231
<div class='is-loading'>
@@ -339,7 +339,7 @@ async function setupTable() {
339
// 3. INITS & EVENT LISTENERS
340
341
// Initial loading State
342
- tableBody.innerHTML = renderLoadingContainer();
+ tableBody.innerHTML = displayLoadingContainer();
343
if (sessionStorage.getItem('userdata')) {
344
// Use the data from session storage
345
results = JSON.parse(sessionStorage.getItem('userdata'));
0 commit comments