Skip to content
Snippets Groups Projects
Commit 4a347c54 authored by gnaegi's avatar gnaegi
Browse files

OO-319 fix issue where skip launch screen config did not apply when score was not transfered

parent 72a45cac
No related branches found
No related tags found
No related merge requests found
......@@ -141,13 +141,9 @@ public class ScormRunController extends BasicController implements ScormAPICallb
putInitialPanel(main);
boolean doSkip = config.getBooleanSafe(ScormEditController.CONFIG_SKIPLAUNCHPAGE, true);
if (isAssessable && doSkip && !maxAttemptsReached()) {
if (doSkip && !maxAttemptsReached()) {
doLaunch(ureq, true);
//CoordinatorManager.getInstance().getCoordinator().getEventBus().registerFor(this, ureq.getIdentity(), OresHelper.createOLATResourceableType(getClass().getName()));
getWindowControl().getWindowBackOffice().addCycleListener(this);
// Component scormContent = scormDispC.getInitialComponent();
// fireEvent(ureq, new FullWidthReplaceRequestEvent(true, scormContent));
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment