Skip to content

Instantly share code, notes, and snippets.

@nimdraugsael
Created June 14, 2013 06:50
Show Gist options
  • Save nimdraugsael/5779956 to your computer and use it in GitHub Desktop.
Save nimdraugsael/5779956 to your computer and use it in GitHub Desktop.
$ ->
$module_type_select = $('@module_type_select')
$module_type_select.trigger 'change'
$module_type_select.on 'change', ->
$flight_fields = $('.wf-info__depart, .wf-info__return')
$show_hotels_checkbox = $('@show_hotels_checkbox')
if this.value == 'hotel'
$flight_fields.hide()
$show_hotels_checkbox.prop('checked', true)
else
$flight_fields.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment