aboutsummaryrefslogtreecommitdiffstats
path: root/src/manipulation.js
diff options
context:
space:
mode:
authorjeresig <jeresig@gmail.com>2009-12-21 18:02:02 -0500
committerjeresig <jeresig@gmail.com>2009-12-21 18:02:02 -0500
commite083d15fc786a853e54b800e3798536f1d958301 (patch)
treefa85f8374fdb8aacd9856fe0a89bac49103678c2 /src/manipulation.js
parent209751fcbd8a42eef68df44c875763b6af8a5474 (diff)
downloadjquery-e083d15fc786a853e54b800e3798536f1d958301.tar.gz
jquery-e083d15fc786a853e54b800e3798536f1d958301.zip
Tweaked a couple cases where == was used instead of ===.
Diffstat (limited to 'src/manipulation.js')
-rw-r--r--src/manipulation.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/manipulation.js b/src/manipulation.js
index cfb9c9d61..4f7ee6504 100644
--- a/src/manipulation.js
+++ b/src/manipulation.js
@@ -416,7 +416,7 @@ jQuery.extend({
div.firstChild && div.firstChild.childNodes :
// String was a bare <thead> or <tfoot>
- wrap[1] == "<table>" && !hasBody ?
+ wrap[1] === "<table>" && !hasBody ?
div.childNodes :
[];