Question: How can I disable suspend mode? Seems the cmi.core.ext is always being set to "suspend" so the course is never passing.
Answer: Change the SCORMFunctions.js file - comment out the original call and replace the value of the cmi.core.suspend to "" as follows:
//blnResult = blnResult && SCORM_CallLMSSetValue("cmi.core.exit",SCORM_TranslateExitTypeToSCORM(strExitType));
blnResult = blnResult && SCORM_CallLMSSetValue("cmi.core.exit", "");
This fix should work. It will definitely cause it not to set suspend.