allow to invite party
This commit is contained in:
committed by
Oleksandr Turchyn
parent
3604fb6461
commit
10fbdf6612
@@ -0,0 +1,15 @@
|
||||
export default class extends HTMLElement {
|
||||
connectedCallback () {
|
||||
this.items.forEach((item) => {
|
||||
item.addEventListener('change', (e) => {
|
||||
this.items.forEach((item) => {
|
||||
item.checked = item === e.target && e.target.checked
|
||||
})
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
get items () {
|
||||
return this.querySelectorAll('input[type="checkbox"]')
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user