This repository has been archived on 2021-11-24. You can view files and clone it, but cannot push or open issues or pull requests.
phone_app/app/assets/javascripts/event_form.coffee
2021-08-23 10:26:02 +02:00

17 lines
374 B
CoffeeScript

@update_event_form = ->
if $("#event_stop_date").is(":checked")
$(".stop_at").show()
else
$(".stop_at").hide()
if $("#event_entire_day").is(":checked")
$(".event_time").hide()
$(".event_time_input").attr "value", ""
else
$(".event_time").show()
$ ->
$(document).on 'change', ".event_date_form input:checkbox", ->
update_event_form()