Merge pull request #304 from DutsAndrew/main
removed duplicate element selector & added semicolon
This commit is contained in:
commit
8891e00fe8
|
@ -1,10 +1,9 @@
|
|||
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');
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue