removed duplicate element selector & added semicolon
This commit is contained in:
parent
db23fc7309
commit
39ed908683
|
@ -1,10 +1,9 @@
|
||||||
const openButton = document.getElementById('trigger-modal');
|
const openButton = document.getElementById('trigger-modal');
|
||||||
const closeButton = document.getElementById('close-modal');
|
const closeButton = document.getElementById('close-modal');
|
||||||
const backdrop = document.getElementById('backdrop')
|
|
||||||
|
|
||||||
function toggleModal() {
|
function toggleModal() {
|
||||||
const modalDiv = document.querySelector('.popup-modal');
|
const modalDiv = document.querySelector('.popup-modal');
|
||||||
const backdrop = document.querySelector('.backdrop')
|
const backdrop = document.querySelector('.backdrop');
|
||||||
modalDiv.classList.toggle('show');
|
modalDiv.classList.toggle('show');
|
||||||
backdrop.classList.toggle('show');
|
backdrop.classList.toggle('show');
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue