1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- /* 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 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);
- });
- });
|