Items API Events
test:reading:start
Fires when the configured reading time period has started.
You would want to be notified about this event firing, because you might want to display a custom message for the learner that the timed reading period has begun, for example.
Examples
itemsApp.on('test:reading:start', function () {
console.log('This code executes when the reading time has started.');
});
Related articles
- The
test:reading:end
event, the event that occurs when the reading time has ended. - The
reading_mode
initialization option, which allows you to configure the reading mode for the assessment.