Items API Initialization
show_outro
Specifies whether to show an outro page when the assessment has been submitted. The outro page is used to display information to the learner at the end of their assessment. If the outro_item
initialization option is not set, the default message with the "Submit Activity" confirmation will be shown.
You would want to specify this option so that you can turn off the outro page when the assessment has been submitted.
Examples
// Disable the outro page
var initializationOptions = {
"config": {
"navigation": {
"show_outro": false
}
}
};
Values
Attribute path config.navigation.show_outro
Default true
Type boolean
Related articles
- The
outro_item
initialization option, which allows you to select an Item to display on the outro page. - The
onsubmit_redirect_url
initialization option, which redirects the learner to the specified URL when the session has been submitted.