Trigger attempted event the first time a user sees a question - HFJ-1397
parent
5aec15061c
commit
3a2bb0a2fd
|
@ -93,7 +93,13 @@ H5P.EventDispatcher.prototype.triggerXAPIScored = function (score, maxScore, ver
|
||||||
};
|
};
|
||||||
|
|
||||||
H5P.EventDispatcher.prototype.setActivityStarted = function() {
|
H5P.EventDispatcher.prototype.setActivityStarted = function() {
|
||||||
this.activityStartTime = Date.now();
|
if (this.activityStartTime === undefined) {
|
||||||
|
// Don't trigger xAPI events in the editor
|
||||||
|
if (H5PIntegration.contents['cid-' + this.contentId] !== undefined) {
|
||||||
|
this.triggerXAPI('attempted');
|
||||||
|
}
|
||||||
|
this.activityStartTime = Date.now();
|
||||||
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue