Adding some additional AICC CMI parameters

This commit is contained in:
Jonathan Putney
2020-01-16 08:58:46 -05:00
parent 19a27dd071
commit ccf1f7b4b7
8 changed files with 1809 additions and 61 deletions

View File

@@ -673,15 +673,21 @@ export class CMIStudentData extends BaseCMI {
* Class representing SCORM 1.2's cmi.student_preference object
* @extends BaseCMI
*/
class CMIStudentPreference extends BaseCMI {
export class CMIStudentPreference extends BaseCMI {
#_children;
/**
* Constructor for cmi.student_preference
* @param {string} student_preference_children
*/
constructor() {
constructor(student_preference_children) {
super();
this.#_children = student_preference_children ?
student_preference_children :
scorm12_constants.student_preference_children;
}
#_children = scorm12_constants.student_preference_children;
#audio = '';
#language = '';
#speed = '';