状態値を割り当てずにここで同じことを行うことができる (できればクリーンな) 方法はありますか? if 条件が同じ行にある場合、(関数ではなく) ブール値を返す if 条件に問題がありました。
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 )