Skip to content

Commit

Permalink
Fix javascript error while tracking gapFill in DropDown mode
Browse files Browse the repository at this point in the history
  • Loading branch information
torinfo committed Sep 14, 2022
1 parent cee4363 commit c97a431
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -344,7 +344,7 @@
correctAnswer = answerData[interactionNumber][0];
correctAnswer = correctAnswer + "-->" + interactionNumber;
correctAnswers.push(correctAnswer);
correctOption = {source: answerData[interactionNumber][0], target: interactionNumber}
correctOption = {source: answerData[interactionNumber][0], target: interactionNumber + ''}
correctOptions.push(correctOption);
}
XTEnterInteraction(x_currentPage, 0 , 'match', name, correctOptions, correctAnswers, "", x_currentPageXML.getAttribute("grouping"));
Expand Down

0 comments on commit c97a431

Please sign in to comment.