/**************************************************************/ /* Module GPE /**************************************************************/ var GPE = { list: function () { $('#expandlist > li') .click(function (event) { if (this == event.target) { $(this).toggleClass('expanded'); $(this).find('ul').toggle('medium'); } return false; }) .addClass('collapsed') .find('ul').hide(); //Create the button functionality $('#expandall') .unbind('click') .click(function () { $('.collapsed').addClass('expanded'); $('.collapsed').children().show('medium'); }) $('#collapseall') .unbind('click') .click(function () { $('.collapsed').removeClass('expanded'); $('.collapsed').children().hide('medium'); }) }, popuplink: function(audio_file) { window.open(audio_file, 'audio', 'resizable=yes,status=no,location=no,toolbar=no,menubar=no,fullscreen=no,scrollbars=no,dependent=no,width=400,height=200'); return false }, /* Selection audioblock under a section tag and move it before the title */ moveAudioBlock: function() { $('section').each(function () { var $this = $(this); var $audio = $this.find('.audioblock'); var $audioHtml = $audio.html(); if ($audioHtml != null) { $this.removeData($audioHtml); $audio.prependTo($this); } }); } }; /**************************************************************/ /* Functions to execute on loading of the document */ /**************************************************************/ $(document).ready(function () { // Check expandable and collapsable lists GPE.list(); // Add click event for