Index: lams_tool_lamc/web/learning/AnswersContent.jsp =================================================================== diff -u -r9341a0c38edc40bb9eba0237fabe791ad445de73 -r54782040456712801d69b620cfd567f7dbf39059 --- lams_tool_lamc/web/learning/AnswersContent.jsp (.../AnswersContent.jsp) (revision 9341a0c38edc40bb9eba0237fabe791ad445de73) +++ lams_tool_lamc/web/learning/AnswersContent.jsp (.../AnswersContent.jsp) (revision 54782040456712801d69b620cfd567f7dbf39059) @@ -65,13 +65,20 @@ return (true); } + function disableContinueButton() { + var elem = document.getElementById("continueButton"); + if (elem != null) { + elem.disabled = true; + } + } +
- +