aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJörn Zaefferer <joern.zaefferer@gmail.com>2006-12-30 09:44:34 +0000
committerJörn Zaefferer <joern.zaefferer@gmail.com>2006-12-30 09:44:34 +0000
commit3f6a513b7ee693dfd030cb7c9200f22cfafd2b0f (patch)
tree620a1377fdb51d26de2af3b6a51447420b674acb
parent65a88fae8919e5da774dcc45c9b42220f875b697 (diff)
downloadjquery-3f6a513b7ee693dfd030cb7c9200f22cfafd2b0f.tar.gz
jquery-3f6a513b7ee693dfd030cb7c9200f22cfafd2b0f.zip
Fixed missing semicolon
-rw-r--r--src/jquery/jquery.js2
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));
}
],