diff options
author | Aurelio De Rosa <aurelioderosa@gmail.com> | 2014-06-10 22:26:35 +0100 |
---|---|---|
committer | Oleg Gaidarenko <markelog@gmail.com> | 2014-09-02 20:12:35 +0400 |
commit | 895ea6887dd02a44067d041db00c355c80e930a3 (patch) | |
tree | 8fc52b05c756031a71060dd9156eb4156ca25043 | |
parent | 995f70777ac6c0f988a44807ef1399e73937b2ee (diff) | |
download | jquery-895ea6887dd02a44067d041db00c355c80e930a3.tar.gz jquery-895ea6887dd02a44067d041db00c355c80e930a3.zip |
CSS: Removed redundant "to the number" in comment
Closes gh-1594
-rw-r--r-- | src/css.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/css.js b/src/css.js index fc4524ed0..94a1d234f 100644 --- a/src/css.js +++ b/src/css.js @@ -283,7 +283,7 @@ jQuery.extend({ return; } - // If a number, add 'px' to the (except for certain CSS properties) + // If a number was passed in, add 'px' (except for certain CSS properties) if ( type === "number" && !jQuery.cssNumber[ origName ] ) { value += "px"; } |