11 lines
424 B
Text
11 lines
424 B
Text
<div
|
|
class="connections-grid"
|
|
data-behaviour="connections_answer"
|
|
data-submit-url="<%= answer_question_url(question.id) %>"
|
|
>
|
|
<% answers = question.data.each.with_index.to_a %>
|
|
<% answers = reorder_with_indices(answers, question.answer.data) if question.answer.present? %>
|
|
<% answers.each do |a, i| %>
|
|
<span class="connections-element" data-id="<%= i %>"><%= a %></span>
|
|
<% end %>
|
|
</div>
|