9 lines
227 B
CoffeeScript
9 lines
227 B
CoffeeScript
App.LegislationQuestions =
|
|
|
|
initialize: ->
|
|
$('form#new_legislation_answer input.button').hide()
|
|
$('form#new_legislation_answer input[type=radio]').on
|
|
click: ->
|
|
$('form#new_legislation_answer').submit()
|
|
|