Is there a way (hopefully clean) that i can do the same thing here without assigning the state value? I have been having problems with the if condition returning booleans (instead of a function) when the if condition is on the same line.
onItemChanged = (event,ui) ->
input_element = event.target
list_id = input_element.getAttribute('list_id')
state = if input_element.checked
onItemChecked //function of int -> nothing
else
onItemUnchecked //function of int -> nothing
state (list_id )