.
This commit is contained in:
@@ -59,10 +59,9 @@ $(document).ready(function () {
|
||||
$("#question-mark-list li").show();
|
||||
});
|
||||
$(".show-unmarked-button").click(() => {
|
||||
console.log("TESTIG");
|
||||
$("#question-mark-list li").each((n, el) => {
|
||||
console.log(el);
|
||||
if (el.dataset.markcount < 1) { $(el).hide(); }
|
||||
// Can't seem to get django to output this as a int....
|
||||
if (parseInt(el.dataset.markcount) < 1) { $(el).hide(); }
|
||||
})
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user