diff options
author | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2007-01-11 13:57:40 +0000 |
---|---|---|
committer | Jörn Zaefferer <joern.zaefferer@gmail.com> | 2007-01-11 13:57:40 +0000 |
commit | fd30d7746d1b98b362f796f235805061d63d514f (patch) | |
tree | b98c9321f7e108a848726411bebf3e88a3405338 /src/jquery/jquery.js | |
parent | d1390665b6e7d475d237cafcf8948440c9adfbf8 (diff) | |
download | jquery-fd30d7746d1b98b362f796f235805061d63d514f.tar.gz jquery-fd30d7746d1b98b362f796f235805061d63d514f.zip |
Fixed missing typo
Diffstat (limited to 'src/jquery/jquery.js')
-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 9db0f9d5f..f942bf4f6 100644 --- a/src/jquery/jquery.js +++ b/src/jquery/jquery.js @@ -1254,7 +1254,7 @@ jQuery.extend({ prop: function(elem, value, type){ // Handle executable functions if ( value.constructor == Function ) - return value.call( elem ) + return value.call( elem ); // Handle passing in a number to a CSS property if ( value.constructor == Number && type == "css" ) |