aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJohn Resig <jeresig@gmail.com>2006-08-31 04:13:39 +0000
committerJohn Resig <jeresig@gmail.com>2006-08-31 04:13:39 +0000
commit6ceecc520a2b521dedce47f83c954727299b6653 (patch)
treeb69cf4a654b57d90e0982f1080809534e36e4c59 /src
parentf404d2c395626b3a09512b0b41da77fb7eb36260 (diff)
downloadjquery-6ceecc520a2b521dedce47f83c954727299b6653.tar.gz
jquery-6ceecc520a2b521dedce47f83c954727299b6653.zip
Apparently I accidentally removed :nth-chlid()... uhh - oops?
Diffstat (limited to 'src')
-rw-r--r--src/jquery/jquery.js1
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",