You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Documentation tool always sets the score to 0/0. When this is integrated into Drupal via Opigno, this results in Opigno setting a 0 score regardless of what is set for the activity. The behaviour I'd expect would be Opigno setting the score to whatever is set for the activity (i.e. just to record that it's been completed).
Haven't really worked with xapi much, but would it be possible to just not call setScoredResult at all?
self.triggerAnsweredEvents();
/*
* There's no score attached to Documentation Tool, but
* it may be used in Column which needs a score that's not null.
*/
var completedEvent = self.createXAPIEventTemplate('completed');
completedEvent.setScoredResult(0, 0);
self.trigger(completedEvent);
});
The text was updated successfully, but these errors were encountered:
The Documentation tool always sets the score to 0/0. When this is integrated into Drupal via Opigno, this results in Opigno setting a 0 score regardless of what is set for the activity. The behaviour I'd expect would be Opigno setting the score to whatever is set for the activity (i.e. just to record that it's been completed).
Haven't really worked with xapi much, but would it be possible to just not call setScoredResult at all?
The text was updated successfully, but these errors were encountered: