diff options
author | jeresig <jeresig@gmail.com> | 2009-12-21 18:02:02 -0500 |
---|---|---|
committer | jeresig <jeresig@gmail.com> | 2009-12-21 18:02:02 -0500 |
commit | e083d15fc786a853e54b800e3798536f1d958301 (patch) | |
tree | fa85f8374fdb8aacd9856fe0a89bac49103678c2 /src/support.js | |
parent | 209751fcbd8a42eef68df44c875763b6af8a5474 (diff) | |
download | jquery-e083d15fc786a853e54b800e3798536f1d958301.tar.gz jquery-e083d15fc786a853e54b800e3798536f1d958301.zip |
Tweaked a couple cases where == was used instead of ===.
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 249fb1509..ef5f01021 100644 --- a/src/support.js +++ b/src/support.js @@ -20,7 +20,7 @@ jQuery.support = { // IE strips leading whitespace when .innerHTML is used - leadingWhitespace: div.firstChild.nodeType == 3, + leadingWhitespace: div.firstChild.nodeType === 3, // Make sure that tbody elements aren't automatically inserted // IE will insert them into empty tables |