Merge pull request #74 from liang611zh/master

Fix click outside the image has no action issue
pull/75/head
Brad Traversy 3 years ago committed by GitHub
commit ad88863870
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -10,6 +10,12 @@ ratingsContainer.addEventListener('click', (e) => {
e.target.parentNode.classList.add('active')
selectedRating = e.target.nextElementSibling.innerHTML
}
if(e.target.classList.contains('rating')) {
removeActive()
e.target.classList.add('active')
selectedRating = e.target.nextElementSibling.innerHTML
}
})
sendBtn.addEventListener('click', (e) => {

Loading…
Cancel
Save