Skip to content
Snippets Groups Projects
Commit 99c940b1 authored by Isabel Uffinger's avatar Isabel Uffinger
Browse files

added console output for debugging

parent b6bf3d87
No related branches found
No related tags found
No related merge requests found
......@@ -120,12 +120,16 @@ define(['core/ajax',
//setting the proglang and gradername as tag (easiest point to access selected grader name)
let tagInput = document.querySelectorAll('[id^=form_autocomplete_input]')[0];
console.log(tagInput);
tagInput.value = result.proglang;
console.log(tagInput.value);
enterKeyEvent(tagInput);
let gradername = document.querySelector("#id_graderselect option[value='" + searchVal + "']").text;
tagInput.value = gradername;
console.log(tagInput.value);
enterKeyEvent(tagInput);
tagInput.value = "MooPT";
console.log(tagInput.value);
enterKeyEvent(tagInput);
if ('result_spec' in selectedGrader) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment