.
This commit is contained in:
@@ -84,7 +84,7 @@
|
|||||||
$(document).ready(function () {
|
$(document).ready(function () {
|
||||||
|
|
||||||
$(".suggested_answers li").each((n, el) => {
|
$(".suggested_answers li").each((n, el) => {
|
||||||
$(el).append($("<span class='confirm'>[Correct]</span>").on("click", function () {
|
$(el).append($("<span class='confirm'>[Add Correct]</span>").on("click", function () {
|
||||||
$.ajax({
|
$.ajax({
|
||||||
url: "{% url 'answer_submit' %}",
|
url: "{% url 'answer_submit' %}",
|
||||||
data: {
|
data: {
|
||||||
@@ -105,7 +105,6 @@
|
|||||||
if (data.success) {
|
if (data.success) {
|
||||||
toastr.info('Answer saved')
|
toastr.info('Answer saved')
|
||||||
$(el).find(".confirm").remove()
|
$(el).find(".confirm").remove()
|
||||||
$(el).removeClass("proposed-answer")
|
|
||||||
}
|
}
|
||||||
// show some message according to the response.
|
// show some message according to the response.
|
||||||
// For eg. A message box showing that the status has been changed
|
// For eg. A message box showing that the status has been changed
|
||||||
@@ -139,8 +138,9 @@
|
|||||||
console.log(data);
|
console.log(data);
|
||||||
|
|
||||||
if (data.success) {
|
if (data.success) {
|
||||||
toastr.info('Answer added')
|
toastr.info('Answer saved')
|
||||||
$(el).find(".correct").remove()
|
$(el).find(".correct").remove()
|
||||||
|
$(el).removeClass("proposed-answer")
|
||||||
}
|
}
|
||||||
// show some message according to the response.
|
// show some message according to the response.
|
||||||
// For eg. A message box showing that the status has been changed
|
// For eg. A message box showing that the status has been changed
|
||||||
|
|||||||
Reference in New Issue
Block a user