From 88a3840696161e492b89aad8d71d24a59e145ef5 Mon Sep 17 00:00:00 2001 From: janmax <mail-github@jmx.io> Date: Mon, 8 May 2017 15:30:21 +0200 Subject: [PATCH] Fixes and closes #13 (newline escaping). --- core/templates/core/feedback_form.html | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/core/templates/core/feedback_form.html b/core/templates/core/feedback_form.html index 128ae266..6adda232 100644 --- a/core/templates/core/feedback_form.html +++ b/core/templates/core/feedback_form.html @@ -119,7 +119,6 @@ {% include "core/message_box.html" %} </div> </div> - </div> </div> @@ -159,7 +158,7 @@ // we need this one for the student readonly var editor_student = ace.edit("student_text"); - editor_student.setValue(`{{feedback.of_submission.text|safe}}`, -1); + editor_student.setValue(`{{feedback.of_submission.text|safe|escapejs}}`, -1); editor_student.getSession().setMode("ace/mode/c_cpp"); editor_student.setOptions({ readOnly: true, @@ -170,7 +169,7 @@ var editor_tutor = ace.edit("tutor_text"); var textarea = $('textarea[id="id_text"]'); editor_tutor.focus(); - editor_tutor.setValue(`{{feedback.text|safe}}`, -1); + editor_tutor.setValue(`{{feedback.text|safe|escapejs}}`, -1); editor_tutor.getSession().setUseWrapMode(true) editor_tutor.getSession().on("change", function () { textarea.val(editor_tutor.getSession().getValue()); -- GitLab