diff options
author | John Resig <jeresig@gmail.com> | 2006-08-31 04:13:39 +0000 |
---|---|---|
committer | John Resig <jeresig@gmail.com> | 2006-08-31 04:13:39 +0000 |
commit | 6ceecc520a2b521dedce47f83c954727299b6653 (patch) | |
tree | b69cf4a654b57d90e0982f1080809534e36e4c59 /src | |
parent | f404d2c395626b3a09512b0b41da77fb7eb36260 (diff) | |
download | jquery-6ceecc520a2b521dedce47f83c954727299b6653.tar.gz jquery-6ceecc520a2b521dedce47f83c954727299b6653.zip |
Apparently I accidentally removed :nth-chlid()... uhh - oops?
Diffstat (limited to 'src')
-rw-r--r-- | src/jquery/jquery.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/jquery/jquery.js b/src/jquery/jquery.js index e26ae9e53..d40335b8b 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -1025,6 +1025,7 @@ jQuery.extend({ odd: "i%2", // Child Checks + "nth-child": "jQuery.sibling(a,m[3]).cur", "first-child": "jQuery.sibling(a,0).cur", "last-child": "jQuery.sibling(a,0).last", "only-child": "jQuery.sibling(a).length==1", |