Skip to content

Commit 891f3f9

Browse files
committed
update function names
1 parent f95667b commit 891f3f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

assets/js/script.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,7 @@ async function setupTable() {
225225
* Create HTML loading container
226226
* @return {String} the HTML loading screen template
227227
*/
228-
function renderLoadingContainer() {
228+
function displayLoadingContainer() {
229229
return `
230230
<div class='l-loading-container'>
231231
<div class='is-loading'>
@@ -339,7 +339,7 @@ async function setupTable() {
339339
// 3. INITS & EVENT LISTENERS
340340

341341
// Initial loading State
342-
tableBody.innerHTML = renderLoadingContainer();
342+
tableBody.innerHTML = displayLoadingContainer();
343343
if (sessionStorage.getItem('userdata')) {
344344
// Use the data from session storage
345345
results = JSON.parse(sessionStorage.getItem('userdata'));

0 commit comments

Comments
 (0)