Files
nairobi/app/assets/javascripts/legislation_admin.js.coffee
2018-09-19 14:54:24 +02:00

17 lines
556 B
CoffeeScript

App.LegislationAdmin =
initialize: ->
$("input[type='checkbox'][data-disable-date]").on
change: ->
checkbox = $(this)
parent = $(this).parents('.row:eq(0)')
date_selector = $(this).data('disable-date')
parent.find("input[type='text'][id^='" + date_selector + "']").each ->
if checkbox.is(':checked')
$(this).removeAttr("disabled")
else
$(this).val("")
$("#nested-question-options").on "cocoon:after-insert", ->
App.Globalize.refresh_visible_translations()