diff --git a/main/inc/lib/javascript/jquery.lp_minipanel.js b/main/inc/lib/javascript/jquery.lp_minipanel.js index 07c4082acf..509db308b9 100755 --- a/main/inc/lib/javascript/jquery.lp_minipanel.js +++ b/main/inc/lib/javascript/jquery.lp_minipanel.js @@ -1,48 +1,47 @@ /* For licensing terms, see /license.txt */ -/* - Learning Path minipanel - Chamilo 1.8.8 - Adding mini panel to browse Learning Paths - Requirements: JQuery 1.4.4, JQuery UI 1.8.7 - @author Alberto Torreblanca @albert1t0 - @author Julio Montoya Cleaning/fixing some code - @author Alex Aragon Cleaning/fixing code update - **/ -$(document).ready(function(){ +/** + Learning Path minipanel - Chamilo 1.8.8 + Adding mini panel to browse Learning Paths + Requirements: JQuery 1.4.4, JQuery UI 1.8.7 + @author Alberto Torreblanca @albert1t0 + @author Julio Montoya Cleaning/fixing code + @author Alex Aragon Cleaning/fixing code update +**/ - $('#touch-button').click(function(){ +$(document).ready(function() { - $('#learning_path_left_zone').toggle("slow",function(){ - $('#learning_path_right_zone').toggleClass('total'); - $(function(){ - $('#learning_path_right_zone').slideToggle(300); - $('#control-bottom').toggle("slow"); - }); - } - ); - $(this).toggleClass('show-touch'); - $('#learning_path_right_zone').slideToggle(300); - }); - //effects items scorm content - $('.scorm_item_normal').click(function(){ + $('#touch-button').click(function() { + $('#learning_path_left_zone').toggle("slow", function(){ + $('#learning_path_right_zone').toggleClass('total'); + $(function(){ + $('#learning_path_right_zone').slideToggle(300); + $('#control-bottom').toggle("slow"); + }); + }); + $(this).toggleClass('show-touch'); + $('#learning_path_right_zone').slideToggle(300); + }); + + // effects items scorm content + $('.scorm_item_normal').click(function() { $('#learning_path_right_zone').fadeOut(300); setTimeout(function(){ $('#learning_path_right_zone').fadeIn(300); },300); - }); - $('.scorm-previous').click(function(){ + + $('.scorm-previous').click(function() { $('#learning_path_right_zone').fadeOut(300); setTimeout(function(){ $('#learning_path_right_zone').fadeIn(300); },300); - }); - $('.scorm-next').click(function(){ + + $('.scorm-next').click(function() { $('#learning_path_right_zone').fadeOut(300); setTimeout(function(){ $('#learning_path_right_zone').fadeIn(300); },300); - }); }); diff --git a/main/install/index.php b/main/install/index.php index a64db23a12..7234881107 100755 --- a/main/install/index.php +++ b/main/install/index.php @@ -405,11 +405,11 @@ if ($encryptPassForm == '1') { $(document).ready( function() { $(".advanced_parameters").click(function() { if ($("#id_contact_form").css("display") == "none") { - $("#id_contact_form").css("display","block"); - $("#img_plus_and_minus").html(' <?php echo get_lang('Hide') ?> '); + $("#id_contact_form").css("display","block"); + $("#img_plus_and_minus").html(' <?php echo get_lang('Hide') ?> '); } else { - $("#id_contact_form").css("display","none"); - $("#img_plus_and_minus").html(' <?php echo get_lang('Show') ?> '); + $("#id_contact_form").css("display","none"); + $("#img_plus_and_minus").html(' <?php echo get_lang('Show') ?> '); } }); });