Index: lams_tool_daco/web/includes/javascript/dacoQuestion.js =================================================================== diff -u -rbe03cfbba16a388e85d82cb8986f63d6b2ad568b -r20efcf1f1ffa7e732d72deaf0c670f34836d9a0a --- lams_tool_daco/web/includes/javascript/dacoQuestion.js (.../dacoQuestion.js) (revision be03cfbba16a388e85d82cb8986f63d6b2ad568b) +++ lams_tool_daco/web/includes/javascript/dacoQuestion.js (.../dacoQuestion.js) (revision 20efcf1f1ffa7e732d72deaf0c670f34836d9a0a) @@ -16,15 +16,15 @@ //Resizes the question input area so it is visible on the screen. function resizeQuestionInputArea (){ var questionInputArea = window.top.document.getElementById('questionInputArea'); - questionInputArea.style.height=questionInputArea.contentWindow.document.body.scrollHeight+'px'; + questionInputArea.style.height=questionInputArea.contentWindow.document.body.scrollHeight+10+'px'; } //Checks if the additional options area has all the default values, so it may stay hidden function defaultShowAdditionaOptionsArea(){ if (checkNonDefaultValue("max") || checkNonDefaultValue("min") || checkNonDefaultValue("digitsDecimal") - || $('#questionRequired').attr('checked')){ + || $('#questionRequired').attr('checked')){ toggleAdditionalOptionsArea(); } } @@ -66,7 +66,7 @@ } //Moves the chosen answer option one place up - function upItem(itemIndex){digitsDecimal + function upItem(itemIndex){ if(itemIndex == 0) return; var currId = "#answerOptionItemDesc" + itemIndex;