Skip to content

Commit

Permalink
minor changes to snstranscripts.html layout
Browse files Browse the repository at this point in the history
  • Loading branch information
lbologna committed Aug 15, 2024
1 parent d723db7 commit e245ab4
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions snstranscripts.html
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
<div class="modal-content">
<div id="curation-info-modal-header" class="modal-header">
<h6 id="info-modal" class="modal-title"></h6>
<button type="button" class="btn btn-close" data-bs-dismiss="modal" aria-label="Chiudi"></button>
<button type="button" class="btn btn-close bg-light text-light" data-bs-dismiss="modal" aria-label="Chiudi"></button>
</div>
</div>
</div>
Expand Down Expand Up @@ -255,8 +255,6 @@ <h1 class="modal-title fs-5" id="pwdModalLabel">Inserisci la password necessaria
snsVideoJson = await snsVideoInfo.json();

await populate(snsVideoJson, jsonSnSTranscript);


hideSpinner();
}

Expand Down Expand Up @@ -558,10 +556,16 @@ <h1 class="modal-title fs-5" id="pwdModalLabel">Inserisci la password necessaria

}
}

function sleep (time) {
return new Promise((resolve) => setTimeout(resolve, time));
}
// open all text panels
async function openAll() {
showSpinner();
let allDivs = document.querySelectorAll(".my-collapse-div");
allDivs.forEach(item => { item.classList.add("show") });
allDivs.forEach(item => { item.classList.add("show")});
hideSpinner();
}

// close all text panels
Expand Down

0 comments on commit e245ab4

Please sign in to comment.