update to feedback selection
clicking the feedback text was throwing console log, so, updated logic to consider the feedback text for selection
This commit is contained in:
parent
f682234a3c
commit
6ca607911c
@ -5,15 +5,18 @@ const panel = document.querySelector('#panel')
|
||||
let selectedRating = 'Satisfied'
|
||||
|
||||
ratingsContainer.addEventListener('click', (e) => {
|
||||
if(e.target.parentNode.classList.contains('rating')) {
|
||||
if(e.target.parentNode.classList.contains('rating') && e.target.nextElementSibling) {
|
||||
removeActive()
|
||||
e.target.parentNode.classList.add('active')
|
||||
selectedRating = e.target.nextElementSibling.innerHTML
|
||||
}
|
||||
if(e.target.classList.contains('rating')) {
|
||||
} else if(
|
||||
e.target.parentNode.classList.contains('rating') &&
|
||||
e.target.previousSibling &&
|
||||
e.target.previousElementSibling.nodeName === 'IMG'
|
||||
) {
|
||||
removeActive()
|
||||
e.target.classList.add('active')
|
||||
selectedRating = e.target.nextElementSibling.innerHTML
|
||||
e.target.parentNode.classList.add('active')
|
||||
selectedRating = e.target.innerHTML
|
||||
}
|
||||
|
||||
})
|
||||
@ -32,4 +35,4 @@ function removeActive() {
|
||||
for(let i = 0; i < ratings.length; i++) {
|
||||
ratings[i].classList.remove('active')
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user