Can you please put to XWiki distribution macro for collapsed panel
(panel, which is default collapsed). I have tested this modification and
it's working and is safe. It's equivalent with 'panelheader' macro, but
has changed class of 'div' element only.
Zdenek Machac
File:
skins/xwiki10b1/macros.vm
After macro:
#macro(panelheader $title)
<div class="panel expanded">
<h5 class="xwikipaneltitle"
onclick="togglePanelVisibility(this.parentNode);">$title</h5>
<div class="xwikipanelcontents">
#end
Add macro:
#macro(collapsedpanelheader $title)
<div class="panel collapsed">
<h5 class="xwikipaneltitle"
onclick="togglePanelVisibility(this.parentNode);">$title</h5>
<div class="xwikipanelcontents">
#end