0
0
Fork 0

Add delete button to choices.

This commit is contained in:
Tyler-A 2019-09-10 20:49:07 -06:00
parent 3297c70db4
commit e461a0a677
3 changed files with 18 additions and 7 deletions

3
js/delete_choice.js Normal file
View file

@ -0,0 +1,3 @@
const delete_choice = (node) => {
node.parentElement.parentElement.removeChild(node.parentElement)
};