Fixing build

This commit is contained in:
Jonathan Putney
2020-07-30 18:10:34 -04:00
parent 22408c2c0e
commit 107069963c
5 changed files with 6 additions and 7 deletions

4
dist/scorm-again.js vendored

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -1,6 +1,6 @@
{
"name": "scorm-again",
"version": "1.3.4",
"version": "1.3.5",
"description": "A modern SCORM JavaScript run-time library for AICC, SCORM 1.2, and SCORM 2004",
"main": "dist/scorm-again.min.js",
"directories": {

View File

@@ -395,8 +395,7 @@ export class CMI extends BaseCMI {
* @param {string} session_time
*/
set session_time(session_time) {
if (this.initialized &&
check2004ValidFormat(session_time, scorm2004_regex.CMITimespan)) {
if (check2004ValidFormat(session_time, scorm2004_regex.CMITimespan)) {
this.#session_time = session_time;
}
}