Merge pull request #304 from DutsAndrew/main

removed duplicate element selector & added semicolon
This commit is contained in:
Cody Loyd 2023-03-26 16:29:19 -05:00 committed by GitHub
commit 8891e00fe8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 3 deletions

View File

@ -1,13 +1,12 @@
const openButton = document.getElementById('trigger-modal');
const closeButton = document.getElementById('close-modal');
const backdrop = document.getElementById('backdrop')
function toggleModal() {
const modalDiv = document.querySelector('.popup-modal');
const backdrop = document.querySelector('.backdrop')
const backdrop = document.querySelector('.backdrop');
modalDiv.classList.toggle('show');
backdrop.classList.toggle('show');
}
openButton.addEventListener('click', toggleModal);
closeButton.addEventListener('click', toggleModal);
closeButton.addEventListener('click', toggleModal);