Index: lams_tool_laqa/web/authoring/AdvancedContent.jsp =================================================================== diff -u -r100086be3f7ecd50ffed1087c530bf74533e6db1 -r2c0f9823decaa5ac91acaee2fb8ad82da0425b3b --- lams_tool_laqa/web/authoring/AdvancedContent.jsp (.../AdvancedContent.jsp) (revision 100086be3f7ecd50ffed1087c530bf74533e6db1) +++ lams_tool_laqa/web/authoring/AdvancedContent.jsp (.../AdvancedContent.jsp) (revision 2c0f9823decaa5ac91acaee2fb8ad82da0425b3b) @@ -27,15 +27,17 @@ } }); + $(".rating-criteria-tag").hide(); + + $('#allowRateAnswers').click(function() { + $(".rating-criteria-tag").toggle("slow"); + }); + //initial state if (${formBean.showOtherAnswers == 0}) { $("#show-other-answers-options").hide(); } - $('#allow-rate-answers').click(function() { - $(".rating-criteria-tag").toggle("slow"); - }); - $('#no-reedit-allowed').click(function() { if ($(this).is(':checked')) { $("#lockWhenFinished").prop('checked', true); @@ -47,6 +49,8 @@ $('#reflect').prop('checked', !isEmpty($(this).val())); }); }); + +