diff options
author | jaubourg <j@ubourg.net> | 2011-04-08 17:41:14 +0200 |
---|---|---|
committer | jaubourg <j@ubourg.net> | 2011-04-08 17:41:14 +0200 |
commit | 2594a935de347088cecac987c3868e9bb5f35194 (patch) | |
tree | 38d443f692f96bb65e548e5f95260201f51a5e38 /src/support.js | |
parent | 7a1c6beab0d92b1419050eb468773bf1138254a6 (diff) | |
download | jquery-2594a935de347088cecac987c3868e9bb5f35194.tar.gz jquery-2594a935de347088cecac987c3868e9bb5f35194.zip |
Applies exception in Style Guidelines regarding objects and functions when they are the last argument of a function call.
Diffstat (limited to 'src/support.js')
-rw-r--r-- | src/support.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/support.js b/src/support.js index d5625bed2..f039c7e87 100644 --- a/src/support.js +++ b/src/support.js @@ -105,7 +105,7 @@ jQuery.support = (function() { // bound event handlers (IE does this) support.noCloneEvent = false; div.detachEvent( "onclick", click ); - } ); + }); div.cloneNode( true ).fireEvent( "onclick" ); } |