mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-12 23:14:18 +01:00
32 lines
1.0 KiB
Twig
32 lines
1.0 KiB
Twig
{# @copyright Copyright (C) 2010-2024 Combodo SAS #}
|
|
{# @license http://opensource.org/licenses/AGPL-3.0 #}
|
|
{% apply spaceless %}
|
|
|
|
var sHiddeableChapters = '<ul role="tablist" class="ibo-block-print--tablist">';
|
|
for (sId in oHiddeableChapters)
|
|
{
|
|
sHiddeableChapters += '<li tabindex="-1" role="tab" class="ibo-block-print--tab hideable-chapter" chapter-id="'+sId+'"><span class="tab ui-tabs-anchor">' + oHiddeableChapters[sId] + '</span></li>';
|
|
//alert(oHiddeableChapters[sId]);
|
|
}
|
|
sHiddeableChapters += '</ul>';
|
|
|
|
$('#hiddeable_chapters').html(sHiddeableChapters);
|
|
|
|
$('.hideable-chapter').on('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('<span></span>').prepend(jLegend);
|
|
});
|
|
|
|
$('legend').css('cursor', 'pointer').on('click', function(){
|
|
$(this).parent('fieldset').toggleClass('not-printable strikethrough');
|
|
});
|
|
|
|
{% endapply %} |