Fixed missing semicolon

This commit is contained in:
Jörn Zaefferer 2006-12-30 09:44:34 +00:00
parent 65a88fae89
commit 3f6a513b7e

View File

@ -1511,7 +1511,7 @@ jQuery.extend({
">|/", "jQuery.sibling(a.firstChild)", ">|/", "jQuery.sibling(a.firstChild)",
"\\+", "jQuery.nth(a,2,'nextSibling')", "\\+", "jQuery.nth(a,2,'nextSibling')",
"~", function(a){ "~", function(a){
var s = jQuery.sibling(a.parentNode.firstChild) var s = jQuery.sibling(a.parentNode.firstChild);
return s.slice(0, jQuery.inArray(a,s)); return s.slice(0, jQuery.inArray(a,s));
} }
], ],