Add auto check checkbox of selected question.
This commit is contained in:
parent
54dc77bfd1
commit
a39e5738a5
|
@ -308,7 +308,11 @@
|
|||
<%= javascript_include_tag "lib/jquery.form"%>
|
||||
|
||||
<script type="text/javascript">
|
||||
|
||||
$(document).ready(function(){
|
||||
$('.o-question-group input').on('click',function(){
|
||||
$(this).parents('.question-item').find('.question-checkbox').prop('checked',true);
|
||||
})
|
||||
})
|
||||
<% if @survey.jump_mode %>
|
||||
var answers = <%= @answers.to_json %>;
|
||||
var jump_tos_map = <%= @jump_tos_map.to_json %>;
|
||||
|
|
Loading…
Reference in New Issue