]> source.dussan.org Git - jquery-ui.git/commitdiff
Accordion: Added note about supporting negative values for active option in 2.0.
authorScott González <scott.gonzalez@gmail.com>
Thu, 13 Jan 2011 19:01:38 +0000 (14:01 -0500)
committerScott González <scott.gonzalez@gmail.com>
Thu, 13 Jan 2011 19:01:38 +0000 (14:01 -0500)
ui/jquery.ui.accordion.js

index bcc798bf88a499fc5d2f66af445ae84031cc9b5b..eb6cdb5d0f6ffddb7fa7cdab8d3b781b2567e6a2 100644 (file)
@@ -287,7 +287,7 @@ $.widget( "ui.accordion", {
                this._eventHandler( { target: active, currentTarget: active } );
        },
 
-       // TODO: add tests for negative values in 2.0
+       // TODO: add tests/docs for negative values in 2.0 (#6854)
        _findActive: function( selector ) {
                return typeof selector === "number" ? this.headers.eq( selector ) : $( [] );
        },