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/effects.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/effects.js')
-rw-r--r-- | src/effects.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/effects.js b/src/effects.js index 5ff85d131..ad2ed3c97 100644 --- a/src/effects.js +++ b/src/effects.js @@ -428,7 +428,7 @@ jQuery.fx.prototype = { jQuery.each( [ "", "X", "Y" ], function (index, value) { elem.style[ "overflow" + value ] = options.overflow[index]; - } ); + }); } // Hide the element if the "hide" operation was done |