Remove JS debugger statement

This commit is contained in:
Sebastian Serth
2020-05-12 13:38:17 +02:00
parent e18b79db45
commit 8aaf93af6b

View File

@ -39,7 +39,6 @@ CodeOceanEditorEvaluation = {
$('#submit').get(0).lastChild.nodeValue = I18n.t('exercises.editor.submit_within_grace_period');
} else if (this.late_submission_deadline && now > this.late_submission_deadline || now > this.submission_deadline) {
// after_late_deadline
debugger;
$('#submit').removeClass("btn-success btn-warning btn-danger").addClass("btn-danger");
$('#submit').get(0).lastChild.nodeValue = I18n.t('exercises.editor.submit_after_late_deadline');
}