diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2006-12-30 09:44:34 +0000 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2006-12-30 09:44:34 +0000 |
commit | 3f6a513b7ee693dfd030cb7c9200f22cfafd2b0f (patch) | |
tree | 620a1377fdb51d26de2af3b6a51447420b674acb | |
parent | 65a88fae8919e5da774dcc45c9b42220f875b697 (diff) | |
download | jquery-3f6a513b7ee693dfd030cb7c9200f22cfafd2b0f.tar.gz jquery-3f6a513b7ee693dfd030cb7c9200f22cfafd2b0f.zip |
Fixed missing semicolon
-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 7b712c955..f802ae6a3 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -1511,7 +1511,7 @@ jQuery.extend({ ">|/", "jQuery.sibling(a.firstChild)", "\\+", "jQuery.nth(a,2,'nextSibling')", "~", function(a){ - var s = jQuery.sibling(a.parentNode.firstChild) + var s = jQuery.sibling(a.parentNode.firstChild); return s.slice(0, jQuery.inArray(a,s)); } ], |