Initialization Option Author API

skip_submit_confirmation

Configuration options for the "display confirmation window on submission" functionality.

Values

Request object key config.activity_edit.player.playback.skip_submit_confirmation

Type object

This object has the following properties which can be configured.

  • show boolean

    Controls whether the "display confirmation window on submission" option is shown.

    You would want to use this to hide the option in the assessment player settings.

    Default: true

    var initializationOptions = {
        "config": {
            "activity_edit": {
                "player": {
                    "playback": {
                        "skip_submit_confirmation": {
                            "show": false
                        }
                    }
                }
            }
        }
    };
  • edit boolean

    Controls whether the "display confirmation window on submission" option can be changed.

    You would want to use this so that you can prevent authors from changing the option in the assessment player settings. The option will be shown but cannot be changed.

    Default: true

    var initializationOptions = {
        "config": {
            "activity_edit": {
                "player": {
                    "playback": {
                        "skip_submit_confirmation": {
                            "edit": false
                        }
                    }
                }
            }
        }
    };
Was this article helpful?