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 9242fb7 commit 8b1b57b
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 8b1b57b

Please sign in to comment.