Reporting Bugs / Bug in ui.accordion.js
Hello!
Where can I report bugs at the moment? Shall I post them into trac or to the
newsgroup? Or shall I shut up and stop bugging you and wait until the first
release?
Anyways: In ui.accordion.js slice(0,1) should be used instead of eq(0):
Index: ui.accordion.js
===================================================================
--- ui.accordion.js (Revision 335)
+++ ui.accordion.js (Arbeitskopie)
@@ -147,7 +147,7 @@
: headers.not(headers.not(selector))
: selector === false
? $("<div>")
- : headers.eq(0)
+ : headers.slice(0,1)
}
function toggle(toShow, toHide, data, clickedActive, down) {
Cheers, Christoph