Browse Source

Hide the Fisnish Test button in Reading Comprehension question

Resolves #2082
Angel Fernando Quiroz Campos 6 years ago
parent
commit
ab0ef42bf3
1 changed files with 4 additions and 0 deletions
  1. 4 0
      main/template/default/exercise/reading_comprehension.tpl

+ 4 - 0
main/template/default/exercise/reading_comprehension.tpl

@@ -84,6 +84,8 @@
 
             if (index == total - 1) {
                 $('#question_div_{{ id }} .radio, #question_div_{{ id }} .question_title').removeClass('hide-reading-answers');
+
+                $('#question_div_{{ id }} .form-actions').show();
             }
 
             if (index >= total) {
@@ -112,5 +114,7 @@
         updateView();
 
         var timeOuId = window.setInterval(updateView, {{ refresh_time }} * 1000);
+
+        $('#question_div_{{ id }} .form-actions').hide();
     });
 </script>