Skip to content

Commit

Permalink
Update auto_review_averager_bookmarklet.js
Browse files Browse the repository at this point in the history
  • Loading branch information
kaychoro committed Jan 3, 2024
1 parent 2ac1a64 commit 9dea7fb
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions auto_review_averager_bookmarklet.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ while (graded < totalToGrade && times < totalToGrade)
break;
}
}
else if (document.getElementById('multiple_submissions').textContent.search("no submission time") > 0 && document.getElementById('grading-box-extended').value.length == 0) {
document.getElementById('grading-box-extended').value = 0;
document.getElementById('grading-box-extended').dispatchEvent(new Event('change'));
}

document.getElementById('next-student-button').dispatchEvent(new Event('click'));
xOfX = document.getElementById('x_of_x_graded').innerText.split('/');
graded = parseInt(xOfX[0]);
Expand Down

0 comments on commit 9dea7fb

Please sign in to comment.