{# @copyright Copyright (C) 2010-2020 Combodo SARL #} {# @license http://opensource.org/licenses/AGPL-3.0 #} {% apply spaceless %} var sHiddeableChapters = ''; $('#hiddeable_chapters').html(sHiddeableChapters); $('.hideable-chapter').click(function(){ var sChapterId = $(this).attr('chapter-id'); $('#'+sChapterId).toggle(); $(this).toggleClass('strikethrough'); }); $('fieldset').each(function() { var jLegend = $(this).find('legend'); jLegend.remove(); $(this).wrapInner('').prepend(jLegend); }); $('legend').css('cursor', 'pointer').click(function(){ $(this).parent('fieldset').toggleClass('not-printable strikethrough'); }); {% endapply %}