Skip to content

Commit

Permalink
Update js/tests/visual/modal.html
Browse files Browse the repository at this point in the history
  • Loading branch information
GeoSot committed Sep 21, 2022
1 parent 4b5b21b commit 8689f79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/tests/visual/modal.html
Expand Up @@ -216,7 +216,7 @@ <h4 class="modal-title" id="slowModalLabel">Lorem slowly</h4>
document.querySelectorAll('[data-bs-toggle="tooltip"]').forEach(tooltipEl => new bootstrap.Tooltip(tooltipEl))

const tall = document.getElementById('tall')
document.getElementById('tall-toggle').addEventListener('click', function () {
document.getElementById('tall-toggle').addEventListener('click', () => {
if (tall.style.display === 'none') {
tall.style.display = 'block'
} else {
Expand Down

0 comments on commit 8689f79

Please sign in to comment.