32 lines
2.9 KiB
Plaintext
32 lines
2.9 KiB
Plaintext
<% if @before_que %>
|
|
$("#poll_questions_<%= @exercise_question.id%>").insertBefore($("#poll_questions_<%= @before_que.id%>"));
|
|
<% if @before_que.question_type == 1%>
|
|
$("#show_poll_questions_<%= @before_que.id %>").html("<%= escape_javascript(render :partial => 'show_MC', :locals => {:exercise_question => @before_que}) %>");
|
|
<% elsif @before_que.question_type == 2%>
|
|
$("#show_poll_questions_<%= @before_que.id %>").html("<%= escape_javascript(render :partial => 'show_MCQ', :locals => {:exercise_question => @before_que}) %>");
|
|
<% elsif @before_que.question_type == 3%>
|
|
$("#show_poll_questions_<%= @before_que.id %>").html("<%= escape_javascript(render :partial => 'show_single', :locals => {:exercise_question => @before_que}) %>");
|
|
<% elsif @before_que.question_type == 4%>
|
|
$("#show_poll_questions_<%= @before_que.id %>").html("<%= escape_javascript(render :partial => 'show_mulit', :locals => {:exercise_question => @before_que}) %>");
|
|
<% end%>
|
|
<% elsif @after_que %>
|
|
$("#poll_questions_<%= @exercise_question.id%>").insertAfter($("#poll_questions_<%= @after_que.id%>"));
|
|
<% if @after_que.question_type == 1%>
|
|
$("#show_poll_questions_<%= @after_que.id %>").html("<%= escape_javascript(render :partial => 'show_MC', :locals => {:exercise_question => @after_que}) %>");
|
|
<% elsif @after_que.question_type == 2%>
|
|
$("#show_poll_questions_<%= @after_que.id %>").html("<%= escape_javascript(render :partial => 'show_MCQ', :locals => {:exercise_question => @after_que}) %>");
|
|
<% elsif @after_que.question_type == 3%>
|
|
$("#show_poll_questions_<%= @after_que.id %>").html("<%= escape_javascript(render :partial => 'show_single', :locals => {:exercise_question => @after_que}) %>");
|
|
<% elsif @after_que.question_type == 4%>
|
|
$("#show_poll_questions_<%= @after_que.id %>").html("<%= escape_javascript(render :partial => 'show_mulit', :locals => {:exercise_question => @after_que}) %>");
|
|
<% end%>
|
|
<% end %>
|
|
<% if @exercise_question.question_type == 1%>
|
|
$("#show_poll_questions_<%= @exercise_question.id %>").html("<%= escape_javascript(render :partial => 'show_MC', :locals => {:exercise_question => @exercise_question}) %>");
|
|
<% elsif @exercise_question.question_type == 2%>
|
|
$("#show_poll_questions_<%= @exercise_question.id %>").html("<%= escape_javascript(render :partial => 'show_MCQ', :locals => {:exercise_question => @exercise_question}) %>");
|
|
<% elsif @exercise_question.question_type == 3%>
|
|
$("#show_poll_questions_<%= @exercise_question.id %>").html("<%= escape_javascript(render :partial => 'show_single', :locals => {:exercise_question => @exercise_question}) %>");
|
|
<% elsif @exercise_question.question_type == 4%>
|
|
$("#show_poll_questions_<%= @exercise_question.id %>").html("<%= escape_javascript(render :partial => 'show_mulit', :locals => {:exercise_question => @exercise_question}) %>");
|
|
<% end%> |