Summary dynamic load progress
This commit is contained in:
parent
58c4661607
commit
71786f3c6e
@ -161,3 +161,14 @@ $('.answer-block').prop('disabled', true);
|
||||
.on('click', '.button-edit', editClickHandler)
|
||||
.on('click', '.button-cancel', cancelClickHandler)
|
||||
.on('click', '.button-save', saveClickHandler);
|
||||
|
||||
// Dynamically load in coders
|
||||
$.each($('.answer-sec.live-coder-type'), function(index, elem){
|
||||
var qid = $(elem).data('qid');
|
||||
$(elem).find("[data-id='live-coder-answer']").load("/live-coder-entry/" + qid, function(){
|
||||
$(elem).find('.js-error').addClass('hidden');
|
||||
// updateResults();
|
||||
$(elem).find(".code-input textarea").linedtextarea();
|
||||
});
|
||||
|
||||
});
|
||||
|
@ -2,6 +2,7 @@
|
||||
Please revisit this page with JavaScript enabled to modify your answer.
|
||||
</div>
|
||||
|
||||
<% unless params[:action] == 'summary' %>
|
||||
<div data-id="live-coder-finish-later">
|
||||
<p class="warning">
|
||||
This is a question where you will be asked to write code, and it utilizes a JavaScript-enabled
|
||||
@ -12,6 +13,7 @@
|
||||
<input type="checkbox" class="checkbox" name="live-coder-later" value="check_1" id="check_1" />
|
||||
<label for="check_1">I will come back later to finish this live coding question</label>
|
||||
</div>
|
||||
<% end %>
|
||||
|
||||
<div data-id="live-coder-answer">
|
||||
<% # answers inserted dynamically via jQuery .load()
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
<%= form_tag(post_summary_path) do %>
|
||||
<% @quiz.each do |question| %>
|
||||
<article class="answer-sec">
|
||||
<article class="answer-sec <%= question.input_type %>-type" data-qid="<%= question.question_id %>">
|
||||
<div class="question-heading">
|
||||
<div class="question-title">
|
||||
<h3><%= question.question %></h3>
|
||||
|
Loading…
Reference in New Issue
Block a user