Fix show hide course progress details - refs CT#7418

1.9.x
Daniel Barreto 11 years ago
parent 871c45a6f0
commit 0d5a86cdec
  1. 2
      main/course_home/course_home.php
  2. 2
      main/inc/introductionSection.inc.php

@ -55,10 +55,12 @@ $(document).ready(function(){
$("#thematic-show").click(function(){
$(".btn-hide-thematic").hide();
$(".btn-show-thematic").show(); //show using class
$("#pross").fadeToggle(); //Not working collapse for Chrome
});
$("#thematic-hide").click(function(){
$(".btn-show-thematic").hide(); //show using class
$(".btn-hide-thematic").show();
$("#pross").fadeToggle(); //Not working collapse for Chrome
});
});

@ -268,7 +268,7 @@ if ($tool == TOOL_COURSE_HOMEPAGE && !isset($_GET['intro_cmdEdit'])) {
</div>
</div>';
$thematic_description_html .=
'<div class="accordion-body collapse in" id="pross" style="height: auto;">
'<div class="accordion-body collapse in" id="pross" style="height: auto !important;">
<div class="accordion-inner">
<div class="row-fluid">
<div class="span4">

Loading…
Cancel
Save