diff options
author | jeresig <jeresig@gmail.com> | 2009-12-21 20:13:16 -0500 |
---|---|---|
committer | jeresig <jeresig@gmail.com> | 2009-12-21 20:13:16 -0500 |
commit | 3776cbe314ac6f5081e998c3d5ac84d3fbc51872 (patch) | |
tree | fdb204009ea45232f98b295b5d82f0a85043b447 /src/attributes.js | |
parent | 61e37d41490aed319a176c6ca7feb95e5505059c (diff) | |
download | jquery-3776cbe314ac6f5081e998c3d5ac84d3fbc51872.tar.gz jquery-3776cbe314ac6f5081e998c3d5ac84d3fbc51872.zip |
Standardize on using double-quotes for string literals.
Diffstat (limited to 'src/attributes.js')
-rw-r--r-- | src/attributes.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/attributes.js b/src/attributes.js index 4f5692f57..787c6bbe4 100644 --- a/src/attributes.js +++ b/src/attributes.js @@ -137,7 +137,7 @@ jQuery.fn.extend({ // Typecast once if the value is a number if ( typeof value === "number" ) { - value += ''; + value += ""; } var val = value; @@ -149,7 +149,7 @@ jQuery.fn.extend({ // Typecast each time if the value is a Function and the appended // value is therefore different each time. if ( typeof val === "number" ) { - val += ''; + val += ""; } } |