Explorar el Código

Minor - Fix comment language - refs #7218

Yannick Warnier hace 10 años
padre
commit
c518ef3aa6
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      main/course_home/course_home.php

+ 2 - 2
main/course_home/course_home.php

@@ -54,10 +54,10 @@ $htmlHeadXtra[] ='<script>
 $(document).ready(function(){
         $("#thematic-show").click(function(){
             $(".btn-hidden-thematic").hide();
-            $(".btn-show-thematic").show(); //muestro mediante clase
+            $(".btn-show-thematic").show(); //show using class
         });
         $("#thematic-hidden").click(function(){
-        $(".btn-show-thematic").hide(); //muestro mediante clase
+        $(".btn-show-thematic").hide(); //show using class
         $(".btn-hidden-thematic").show();
     });
 });