This commit is contained in:
Ross
2021-10-16 12:36:11 +01:00
parent e8c0b40a71
commit ca51e1df0f
2 changed files with 9 additions and 1 deletions
+8
View File
@@ -754,4 +754,12 @@ input {
.clear-both {
clear: both;
}
.check-saved {
color: purple;
}
.current-mark {
color: darkred;
}
+1 -1
View File
@@ -111,7 +111,7 @@
$(".marking-list .answer").each((n, el) => {
console.log(n, el, el.dataset);
if (el.dataset.mark != el.dataset.newmark) {
$(el).after(`<span>Current mark [${el.dataset.mark}]</span>`)
$(el).after(`<span class="current-mark">Current mark [${el.dataset.mark}]</span>`)
}
})
$("button.check-review").after("Discreptant answers are show above. Click next / save to update you your answers").hide()