Skip to content
Permalink
Browse files
Another logic bug caught by furf in ad950c8.
  • Loading branch information
jeresig committed Sep 9, 2010
1 parent c36596e commit c168c30
Showing 1 changed file with 1 addition and 1 deletion.
@@ -66,7 +66,7 @@ jQuery.extend({
value += "px";
}

if ( !("set" in hooks) || (value = hooks.set( elem, value )) === undefined ) {
if ( !("set" in hooks) || (value = hooks.set( elem, value )) !== undefined ) {
style[ name ] = value;
}

0 comments on commit c168c30

Please sign in to comment.