Index: lams_tool_notebook/web/pages/learning/notebook.jsp
===================================================================
diff -u -r3b3d4284d5320270195dfa1f4980c4bd21e0fea0 -rc05d26819a155980f333e1a4aea16afe974119e3
--- lams_tool_notebook/web/pages/learning/notebook.jsp (.../notebook.jsp) (revision 3b3d4284d5320270195dfa1f4980c4bd21e0fea0)
+++ lams_tool_notebook/web/pages/learning/notebook.jsp (.../notebook.jsp) (revision c05d26819a155980f333e1a4aea16afe974119e3)
@@ -20,7 +20,7 @@
CKEDITOR.instances["entryText"].focus();
- document.learningForm.focusedInput.focus();
+ document.forms.learningForm.focusedInput.focus();
document.getElementById("finishButton").style.visibility = 'visible';
@@ -50,13 +50,13 @@
}
- if (forceResponse =="true" && document.learningForm.focusedInput.value == "") {
+ if (forceResponse =="true" && document.forms.learningForm.focusedInput.value == "") {
retValue = confirm("message.learner.blank.alertforceResponse");
textAreaReady();
return retValue;
- } else if (forceResponse =="false" && document.learningForm.focusedInput.value == "" && mode == "learner") {
+ } else if (forceResponse =="false" && document.forms.learningForm.focusedInput.value == "" && mode == "learner") {
if (!confirm("message.learner.blank.input")) {
// otherwise, focus on the text area
@@ -151,7 +151,7 @@
-