You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.5 KiB
48 lines
1.5 KiB
/* 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(){
|
|
|
|
$('#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(){
|
|
$('#learning_path_right_zone').fadeOut(300);
|
|
setTimeout(function(){
|
|
$('#learning_path_right_zone').fadeIn(300);
|
|
},300);
|
|
|
|
});
|
|
$('.scorm-next').click(function(){
|
|
$('#learning_path_right_zone').fadeOut(300);
|
|
setTimeout(function(){
|
|
$('#learning_path_right_zone').fadeIn(300);
|
|
},300);
|
|
|
|
});
|
|
});
|
|
|