diff options
Diffstat (limited to 'src/jquery/jquery.js')
-rw-r--r-- | src/jquery/jquery.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index 4fb7f8e75..ee65edbb1 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -1817,7 +1817,7 @@ new function() { */ jQuery.each({ parent: "a.parentNode", - parents: jQuery.parents, + parents: "jQuery.parents(a)", next: "jQuery.nth(a,1,'nextSibling')", prev: "jQuery.nth(a,1,'previousSibling')", siblings: "jQuery.sibling(a.parentNode.firstChild,a)", |