Skip to content

Commit

Permalink
Fix tracking of the fill-in mode (completion was not tracked correctly)
Browse files Browse the repository at this point in the history
  • Loading branch information
torinfo committed Apr 14, 2023
1 parent d5a4d9a commit a8a45fe
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -1310,11 +1310,11 @@
{
this.weighting = x_currentPageXML.getAttribute("trackingWeight");
}
if (x_currentPageXML.getAttribute("interactivity") == "Drop Down Menu")
if (x_currentPageXML.getAttribute("interactivity") !== "Drag Drop") // text fill in blank or drop down
{
XTSetPageType(x_currentPage, 'numeric', answerData.length, this.weighting);
}
else { // text fill in blank or drag & drop
else { // drag & drop
XTSetPageType(x_currentPage, 'numeric', 1, this.weighting);
}
}
Expand Down

0 comments on commit a8a45fe

Please sign in to comment.