Merge pull request #443 from danbarretodev/CT7418

Fix show hide course progress details - refs  CT#7418
1.9.x
Yannick Warnier 11 years ago
commit 0282957f97
  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