Skip to main content

Search and Top Navigation

#4674 closed bug (duplicate)

Opened July 12, 2009 09:08PM UTC

Closed July 12, 2010 01:43PM UTC

Overview documents for the Accordion plugin are incorrect.

Reported by: nmaves Owned by:
Priority: minor Milestone: 1.9.0
Component: ui.accordion Version: 1.7.2
Keywords: Cc:
Blocked by: Blocking:
Description

The following documentation is not valid.

''The markup of your accordion container needs pairs of headers and content panels. By default, the header elements are anchors, assuming the following structure:

<div id="accordion">
    <a href="#">First header</a>
    <div>First content</div>
    <a href="#">Second header</a>
    <div>Second content</div>
</div>

''

Attachments (0)
Change History (2)

Changed November 16, 2009 08:17AM UTC by jzaefferer comment:1

milestone: TBD1.8

The header element must have display:block, and for icons to work properly, the text must be wrapped in an ancor-element within the header element.

<div id="accordion">
	<h3><a href="#">Accordion Header 1</a></h3>
	<div>
		Accordion Content 1
	</div>
	<h3><a href="#">Accordion Header 2</a></h3>
	<div>
		Accordion Content 2
	</div>
	<h3><a href="#">Accordion Header 3</a></h3>
	<div>
		Accordion Content 3
	</div>
</div>

Changed July 12, 2010 01:43PM UTC by scottgonzalez comment:2

resolution: → duplicate
status: newclosed

Duplicate of #4468.