dynamically load question ID

This commit is contained in:
Derek Montgomery 2016-07-29 15:24:10 -05:00
parent 69ad750f88
commit 58c4661607
2 changed files with 2 additions and 2 deletions

View File

@ -113,7 +113,7 @@ $(function(){
});
// If JavaScript is enabled, display the livecoder section dynamically
var qid = 257208768;
var qid = $('form#answer-form').data('qid');
$("[data-id='live-coder-answer']").load("/live-coder-entry/" + qid, function(){
// if it loads in, and hide "finish later" checkbox
$("[data-id='live-coder-finish-later']").addClass("hidden");

View File

@ -5,7 +5,7 @@
content_for :footer_title, "Skills Assessment"
%>
<%= form_tag(post_question_path) do %>
<%= form_tag post_question_path, id: 'answer-form', data: {qid: @question.question_id} do %>
<main class="questions_tpl">
<h2 class="question-text"><%= @question.question %></h2>